Reputation: 53378
As title, is there a quick way to run through the code once without stopping on breakpoints?
Upvotes: 2
Views: 842
Reputation: 70204
"Disable All Breakpoints" from the Debug menu - you can assign a keyboard shortcut:
Tools->Options
menu then Environment->Keyboard
That and of course Ctrl + F5 which is the default short cut for "Start Without Debugging" but I'm sure you noticed this one.
Upvotes: 8
Reputation: 6723
"Start without debugging" from the Debug menu will definitely skip all breakpoints :)
Upvotes: 2
Reputation: 129782
In the debug menu, there's a "Disable all breakpoints" option that'll do what you want.
Upvotes: 2