How to debug Visual Studio extensions

前端 未结 4 1070
余生分开走
余生分开走 2020-11-30 17:19

I\'m just writing a VSIX extension for Visual Studio 2010 and can\'t figure out how to debug it.

One obvious method is to output messages. Extension template uses

4条回答
  •  攒了一身酷
    2020-11-30 17:43

    Visual Studio Extensions can be debugged like any other application. You just need to setup the debug experience to launch devenv with the loaded extension. Try the following

    • Right click on the project and select Properties
    • Go to the Debug Tab

    Click on the radio button for Start External Program. Point it to the devenv.exe binary. On my machine it's located at

    C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe

    On a non x64 machine though you can remove the " (x86)" portion.

    Then set the command line arguments to /rootsuffix Exp. This tells Visual Studio to use the experimental hive instead of the normal configuration hive. By default VSIX extensions when built will register themselves in the experimental hive.

    Now you can F5 and it will start Visual Studio with your VSIX as an available extension.

提交回复
热议问题