Where are Visual Studio breakpoints saved?

让人想犯罪 __ 提交于 2019-11-27 12:39:27

问题


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!


回答1:


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!




回答2:


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.



来源:https://stackoverflow.com/questions/200114/where-are-visual-studio-breakpoints-saved

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!