fearofawhackplanet
fearofawhackplanet

Reputation: 53378

Is there a "skip all breakpoints" command in VS(2008)?

As title, is there a quick way to run through the code once without stopping on breakpoints?

Upvotes: 2

Views: 842

Answers (3)

Gregory Pakosz
Gregory Pakosz

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

Jesper Larsen-Ledet
Jesper Larsen-Ledet

Reputation: 6723

"Start without debugging" from the Debug menu will definitely skip all breakpoints :)

Upvotes: 2

David Hedlund
David Hedlund

Reputation: 129782

In the debug menu, there's a "Disable all breakpoints" option that'll do what you want.

Upvotes: 2

Related Questions