Reputation: 9272
I would like VS to break as soon as it's entry point is hit (whatever it is).
In WinDBG, I know of a similar concept, the initial breakpoint. Can I achieve the same effect in Visual Studio, generally?
Upvotes: 2
Views: 716
Reputation: 1046
http://msdn.microsoft.com/en-us/library/t547b0f3(v=vs.80).aspx
You might need to set the project as "Startup project" or something like that, if your solution contains multiple projects.
Upvotes: 5