Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Visual Studio breakpoints saved?

I seem to be getting breakpoints from other programmers when checking out code...

Where is the list of breakpoints saved by Visual Studio? In the vbproj file? vbproj.user file? documents and settings? are they meant to be specific to the solution, the project, the user, the computer they are set on?

Thanks!

like image 608
Laurent Avatar asked Oct 14 '08 05:10

Laurent


People also ask

Where are breakpoints stored?

Where Are Breakpoints Stored? Breakpoints are stored in your Solution User Options (SUO) file for any solution.

How do I view breakpoints in Visual Studio?

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].

Where is the breakpoint in Visual Studio code?

Click in the far left margin next to a line of code. You can also select the line and press F9, select Debug > Toggle Breakpoint, or right-click and select Breakpoint > Insert breakpoint. The breakpoint appears as a red dot in the left margin.

How do I add a breakpoint to all methods in Visual Studio 2019?

Press F3 and then press F9 to add a breakpoint.


1 Answers

They are saved in the <solutionname>.suo file. SUO stands for Solution User Options, and should not be added to source control.

No .vbproj.user files should be in source control either!

like image 170
TheSoftwareJedi Avatar answered Oct 14 '22 03:10

TheSoftwareJedi