Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 6 down vote accepted

If you can change the code, try injecting this line of code in the starting point of your app:

System.Diagnostics.Debugger.Launch

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.

share|improve this answer
Good answer. Thanks! – Tim Mar 28 '12 at 12:16

With Visual Studio Pro 2010 building a .NET 4 application, this doesn't work for me.

Apparently this is a known bug:

https://connect.microsoft.com/VisualStudio/feedback/details/611486/debugger-launch-is-now-crashing-my-net-application-after-upgrading-to-net-4-0

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:

public partial class MainWindow : Form
{
    public MainWindow()
    {
        // To allow you time to attach a remote debugger ...
        MessageBox.Show("Please attach debugger");

        InitializeComponent();
        ...

Now you can attach the VS remote debugger at your leisure, and then hit OK on the message box.

Ugly but functional.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.