When I go to debug my code all my breakpoints are transparently filled (leaving only the outline) and a small triangle with an exclamation point in the middle is in the corner of the break-point.
The error when I hover over the break-point is ‘The break-point will not currently be hit. The source code is different from the original version.’
I had not tried to debug my code in over an hour, and during that time I added a new class with multiple threading functions.
Steps I have taken:
- Clean and rebuild project
- Set option ‘On Run, when build or deployment errors occur:’ to ‘Do not launch’
- Re-save project.
- Move project folder off of flash drive and onto HD
- Close and reopen VS2010
I understand that your class is executed, but the breakpoints are not hit, and that when you build and run your solution, you find a newly created assembly in your build folder.
To find out where VS is taking your assembly from you could first of all set a breakpoint in some class you have not modified, so it will certainly be hit (e.g at the end of your Main). When the breakpoint is hit look for your assembly in AppDomain.CurrentDomain.GetAssemblies(), and here look for the Location property which should give you the path your assembly has been loaded from.