Implementing DebugPort features from VS2022
Hi, I'm developing a custom DebugEngine for Visual Studio, which also includes a custom DebugPortSupplier/DebugPort implementation (src).
In Visual Studio 2022 the "Attach to Process" window got some new cool features:
- Displaying the full command line of the process
- Showing the processe tree
- Automatic refresh of the process list
How do I implement these features for my custom port? Right now the checkboxes are greyed out with messages like "the port doesn't support this" (and the commandline field in the table is empty). I've studied the debugger API reference documentation (https://learn.microsoft.com/en-us/visualstudio/extensibility/debugger/reference/idebugport2?view=vs-2022), but I don't see anything related to these new features. Please, help!