I am working on a C # COM component. This component is called from the application plugin, and when I manually attach the debugger to the application, it stops at breakpoints. But when I use the Visual Studio debugging command (F5 key) and set "Run external program" in the project debugger settings, Visual Studio does not stop at breakpoints.
In short: * set a breakpoint, compile, run the application, apply a debugger for debugging "Managed (v2.0, v1.1, v1.0) code", exec plugin method - VS stops at the breakpoint. * set a breakpoint, specify Run an external program, press F5 - start the application, start the method plugin - VS skips the breakpoint. The Attach To ... command shows ProteusDebugEngine instead of any managed code.
source share