Skip to content
Gregg Miskelly edited this page Apr 27, 2018 · 4 revisions

Welcome to the Visual Studio Debug Adapter Host wiki!

Integrating an existing debug adapter into Visual Studio

If you already have a debug adapter that works in VS Code and you want to bring it into Visual Studio, we recommend:

  1. Start with "Quickly Testing a Debug Adapter in Visual Studio".

    Common issues you might encounter at this stage:

    • Debug adapter depends on other VS Code functionality (such as code in an extension) to launch the process to be debugged.
    • Debug adapter sends values for enumerated fields (such as the reason field on the stopped event) that do not match known values.
  2. Next, follow the steps in "Packaging a VS Code Debug Adapter For Use in VS".

  3. Finally, consider improving the experience for users in Visual Studio by implementing some of the items in "New functionality supported by the Visual Studio Debug Adapter Host".

    These features are simple to implement in many debug adapters and greatly improve the Visual Studio experience:

Troubleshooting

If you run into problems along the way, be sure to look at the Logging page for information on troubleshooting.