As I understand it now, the only way to use the remote debugger is to start the target application, and then attach to it through visual studio. Is there a way to capture all of the breakpoints from the very beginning of the program? There is code within my program that I need to debug, and I can never get the debugger attached fast enough to capture that executing code.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you can change the code, try injecting this line of code in the starting point of your app:
When this line is hit it will prompt you to attach a debugger, effectively waiting for you to respond. Since you are using a remote debugger you should be able to attach at that point and then just cancel the dialog. Hope this helps. |
|||
|
|
|
With Visual Studio Pro 2010 building a .NET 4 application, this doesn't work for me. Apparently this is a known bug: A (somewhat hacky) workaround for the moment which is working for me is just to have the app throw up a MessageBox() right at the start of main window initialisation:
Now you can attach the VS remote debugger at your leisure, and then hit OK on the message box. Ugly but functional. |
|||
|
|