Where are Visual Studio breakpoints saved?

Visual StudioBreakpoints

Visual Studio Problem Overview


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!

Visual Studio Solutions


Solution 1 - Visual Studio

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!

Solution 2 - Visual Studio

Starting from Visual Studio 2015 CTP solution and project related files are stored in the .vs directory. The path to the suo file is .vs&lt;SolutionName>\v14\.suo for Visual Studio 2015.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLaurentView Question on Stackoverflow
Solution 1 - Visual StudioTheSoftwareJediView Answer on Stackoverflow
Solution 2 - Visual StudioMaxView Answer on Stackoverflow