Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clear all breakpoints in a Visual Studio solution

Is there a shortcut to clear all breakpoints within all projects within a solution in Visual Studio?

like image 341
lomaxx Avatar asked Nov 18 '10 02:11

lomaxx


People also ask

How do you see all breakpoints in VS?

Visual Studio's/Atmel Studio's Breakpoint Window gives you an overview of all breakpoints you have set in your project. You open the Breakpoint Window with the menu item Debug > Windows > Breakpoints or by pressing [Alt+F9].

Which command lets you delete breakpoints?

With the clear command you can delete breakpoints according to where they are in your program.


1 Answers

Debug > Delete All Breakpoints

or

Shortcut : CTRL + SHIFT + F9

This works in Debug mode as well.

like image 199
RPM1984 Avatar answered Oct 13 '22 18:10

RPM1984