Where are Visual Studio breakpoints saved?

后端 未结 2 780
终归单人心
终归单人心 2020-12-08 18:29

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

相关标签:
2条回答
  • 2020-12-08 19:01

    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\<SolutionName>\v14\.suo for Visual Studio 2015.

    0 讨论(0)
  • 2020-12-08 19:02

    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!

    0 讨论(0)
提交回复
热议问题