What is the shortcut to skip all break-points in VS?
Solution 1:
You can select "Disable All Breakpoints" from the Debug menu.
This and then continue with F5.
You could set this up as a keyboard shortcut under Tools/Options/Keyboard.
Solution 2:
Well, you can:
- delete all breakpoints using Ctrl+Shift+F9
- disable all breakpoints from the ->Debug menu.
Disabling breakpoints does not have a shortcut defined, but you define your own in ->Tools->Options menu under Environment->Keyboard. Also Shift+F5 stops debugging altogether.