Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When I open the source code in Dot Net it arises the following message :
"Unable to load one or more breakpoints"
First shows the message and I click ok of the message then it shows again. When the source is opened I can't find the breakpoint that I put. Please give me a solution.
Posted
Updated 21-Aug-16 20:53pm
Comments
Jameel VM 11-Sep-13 5:49am    
from where you try to debug the application?in the local application itself?
Sumon562 11-Sep-13 6:30am    
local application

Just remove .suo file which is hidden(Enable to show hidden file in top side under view menu.)
 
Share this answer
 
Just ignore the problem. Remove all breakpoints and add then when you need. You simply set some breakpoints, Visual Studio saved them, but later you modified your code or something else, probably outside of this Visual Studio session, so new Visual Studio session "doesn't know" how to apply breakpoint information which has been rendered invalid. You hardly can use them. However, most likely, you can use other, valid breakpoints, if any. When you fix it, create breakpoints again, close Visual Studio and open it again, you will see that breakpoints are in place.

Alternatively, before opening Visual Studio, you can manually delete everything in your project which is not your source code: "obj" and "bin" sub-directories, all *.user and *.suo. It will everything which is not the source and remove all inconsistencies, but you won't have any breakpoints (isn't it good?). And you should use some revision control system and store only pure source code in it.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900