This is for Visual Studio 2008.

I have Tools|Projects and Solutions|Build and Run|On Run, when projects are out of date set to Always build because that is what I usually want. However, there are some times (when I am examining historic versions in version control) where I want to skip the build process. Is there a magic keystroke that will override the build step for exactly one debugging session so I don't have to change the setting and change it back?

link|improve this question
feedback

1 Answer

No, there isn't. You can't debug an historic version without running it, which implies building it. VS debugs against the current symbols and binary, which will be out sync with the source without building it, making debugging impossible.

link|improve this answer
I don't want to open a different can of worms, but I checked in both the compiled executable and the .pdb files (in a tag, so it's not in any branch). So, I really do have everything I need -- I want to Visual Studio to not blow it away. – seeker Nov 18 '11 at 21:44
Start the program seperately, open the old codebase in VS and attach the debugger manually. – Femaref Nov 18 '11 at 21:52
I want to debug the initialization, so I need break points in place pretty early on. – seeker Nov 18 '11 at 22:54
Make a VM just with VS and the codebase. Checkout the relevant code to a new folder and debug that. If you don't want to taint your current build, you'll have to do something with a bit more work, you won't get around it. – Femaref Nov 19 '11 at 0:58
feedback

Your Answer

 
or
required, but never shown

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