Reputation: 26919
I check out my projects from SVN and usually have a couple of projects in my solution while debugging . sometimes when I set breakpoints in my program to debug it, the program breaks at other points that I have Not set any break point in there at all ! but there is a break point in there? How is it happening? does VS keep its breakpoints location in the .sln file of each project and when I check out from SVN, it causes to break on breakpoint that other people have set on that project? or something else is causing it?
Upvotes: 0
Views: 177
Reputation: 465
It sounds like you have more than the SLN file in source control. If you blindly add your entire folder structure to source control, you will get unwanted behavior.
Upvotes: 2
Reputation: 16315
These could be exceptions as the debugger would force a break if an unhandled exception occurs.
Upvotes: 1