How to debug Visual Studio extensions

前端 未结 4 1079
余生分开走
余生分开走 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:48

    If you try to debug a UnitTestExtension, you should also attach the debugger to the vstest.*.exe processes like descibed here. Otherwise you might see the activate breakpoint but the debugger will never hit it.

提交回复
热议问题