Bohn
Bohn

Reputation: 26919

Unwanted breakpoints in Visual Studio debugger

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

Answers (2)

MCain
MCain

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

krb
krb

Reputation: 16315

These could be exceptions as the debugger would force a break if an unhandled exception occurs.

Upvotes: 1

Related Questions