Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm really hoping someone can help me out with this one. When debugging in Visual Studio, sometimes I add a breakpoint but it's hollow and VS says "The breakpoint will not currently be hit. The source code is different from the original version." Obviously this prevents me from being able to debug.

What on earth does the message mean? What original version? If I've just opened up the solution and not made any changes whatsoever to the code, how can there be an 'original version'?

Can anyone give any advice?

share|improve this question
8  
recompile/build the project before adding the break-point – lexu Mar 18 '10 at 10:04
are you opening a project written in another version of visual studio ? – Mahesh Velaga Mar 18 '10 at 10:08
It's a website project. There should be no need to explicitly build it. It should compile on use. I suspect VS can't build the website, but it's not telling me that! Mahesh - no, all the same version of VS. – David Mar 18 '10 at 11:25
I'm having exactly the same problem. I can place a breakpoint on any file in my project, save for one. I'm still trying to figure out how I can fix this . . . – Charles Dec 9 '10 at 18:08
1  
This subtle error has wasted hrs of mine :( – Vivek Dec 21 '12 at 17:51
show 1 more comment

30 Answers

I have a straightforward (and obvious) solution for this issue. See: "The source code is different from the original version". So what does we have to do? Right click on the project folder inside the solution explorer >> and choose to Clean. So build a new version of the project and the breakpoint will work again!

share|improve this answer
9  
Using clean does not always work. I had to manually delete everything in my bin folder to get it to work again. – Carra May 4 '12 at 13:53
2  
@Carra: You're right! This started working only after deleting everything from my bin folder. Thanks for the tip! – Legend May 15 '12 at 22:48
I mistakenly had a reference to a DLL in my bin folder. Correcting reference path fixed. – Brad Urani Dec 12 '12 at 19:08
I mistakenly was editing the Global.asax file in the wrong project, not the project that was being tested. Obviously a problem! – Brett Apr 24 at 19:19

I had the same problem today and found the following reason:

Someone else on the team unchecked the DLL project in the Debug build configuration, so my new code was never built! No wonder I got the above error message.

So go to Build --> Configuration Manager ... (in VS2010) and check if the project with the code you're trying to debug is checked for the current build configuration.

Hope this helps anyone :-)

share|improve this answer
Thanks for the suggestion Oliver. That's definitely not been happening here, I would notice quite quickly if one of my projects wasn't building. – David Jan 14 '11 at 14:59
Thanks, it might not have helped the OP, but certainly helped me! – GWTNewbie Feb 13 '12 at 12:13
This was the problem and solution, dead on accurate. Thanks mate. – David Anderson - DCOM May 20 '12 at 16:03
I had exactly the same issue, only did not had anything unchecked. it was just build for x86 in that dialog, while my local machine is x64! So I selected the Any CPU option and it works again. – JP Hellemons Jul 11 '12 at 7:28
Thanks - this was exactly it for me too – Mark Henderson Apr 23 at 2:56

Pay attention to the "Output" window in visual studio. It will tell you what assemblies are loaded and when. You may see that an older version of your assembly somewhere in the folder is being loaded. For example if you have multiple assemblies and you are currently trying to break in one of the support assemblies, the CLR will handle the assembly resolving, which may load another assembly file than the one you have referenced in the visual studio project.

share|improve this answer
1  
Also worth bearing in mind, but I don't think it's the problem here since I'm trying to break into a website project, not a class library. – David Mar 18 '10 at 11:28

Did you ever do this?

http://stackoverflow.com/questions/596142/would-you-like-to-continue-and-run-the-last-successful-build

If you ticked the box and pressed "Yes" you will get the last successful build running even though your project does not compile. This means that whenever you set a breakpoint, you will get that error.

Try changing this value:

Tools
    Options
        Projects and Solutions
            Build and Run
                On Run, when build or deployment errors occur: Do not Launch
share|improve this answer
I don't think I had done that. Thanks for the link though. It gave me an insight into what that prompt means! – David Mar 18 '10 at 11:27
2  
Visual Studio had this option for decades now (at least VS98 had it). I never understood why anyone would want to run the last successful build. After all, if that was what I wanted, I would have launched it directly, since I couldn't debug anyway. Do not Launch would have been a more sensible default. – OregonGhost Mar 19 '10 at 9:16
I've used it a few times to run the project (for whatever reason, like just to show someone else) while I'm still in the middle of writing code that won't compile. Sometimes it's handy. Personally, I leave it disabled. – Codesleuth Mar 19 '10 at 9:24

What worked for me was to change the solution platform from x86 to Any CPU. After changing to Any, I set a stop address, ran the website, opened the page, clicked the button and it stopped. I closed the site, changed back to x86 and performed the same sequence successfully. Why are you using x86 in the first place, I'm sure you are asking, its a long story so I will spare you the details.

share|improve this answer
Perhaps the choice of CPU doesn't affect the problem at all and it's just the fact that it forces a rebuild? – jwg Jan 17 at 10:52
It will use another bin folder, there probably was an old dll in your any cpu map. – Carra May 14 at 9:30

I just encountered this problem and in my case the trouble was that I had added a new project to the solution and for some reason the default properties of the solution did NOT include building this particular project. To resolve this, right click on the Solution in the Solution Explorer, click Properties. Then see if the project you're currently trying to debug is marked with a check under the Build column (of the initial view, which should be Configuration Properties > Configuration. If it's not checked, check it!

share|improve this answer
I'd never have thought of that. I will have a look next time. Thanks! – David May 27 '11 at 9:59

For me it was while working on a WebSite project. I tried many of things mentioned above including wiping out all of the .Net Framework TEMP folders:

  • "C:\Documents and Settings\%username%\AppData\Local\Temp\Temporary ASP.NET Files"
  • "C:\windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files"

After cleaning up the tempfolders I got the proper compiler errors back. NOTE: On WebSite projects there is no option to clean (at least that I have seen)...

I finally resolved the problem when I discovered that a class file I had intentinally moved into a subfolder, somehow reappeared in the root folder. VS was using the one while I was editing the other.

share|improve this answer
1  
Emptying out the temporary files in the windows directory worked for me, cheers! – ChrisFletcher Apr 22 '12 at 12:27
I just wanted to add a similar answer - make sure, that no old copy of your project's dll is lying around in any of the temporary folders ASP.NET uses, like C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files - as mentioned - but also C:\Windows\Microsoft.NET\Framework_64_\v4.0.30319\Temporary ASP.NET Files. I use Everything to quickly search for those copies. – Oliver 3 hours ago

in the tool-option--> debugging ---> general
*un-tick option : "require source files to exactly match to the original version"

in my problem with .net C# it worked.

share|improve this answer
This was the only one that worked for me. Thanks a lot! – Axel Magagnini Dec 28 '12 at 21:31
@Rachmad This solution works. But it seems not the complete solution, because it means our source files is not exactly matches the original version – entropy Jan 31 at 8:20
This is exactly what I was looking for by @entropy is right. While this allows the breakpoints to be set, the fact is that the source being used isn't matching the pdb being used. The best solution is to fix that. In times that cannot be done, this works great. – JamesG Feb 5 at 20:47

There is a tricky case for that: when you are using an activator and the assembly you set the breakpoint into has not been loaded yet. The error message is then confusing. The breakpoint will resolve once the activator loads the assembly (assuming the assembly and debug symbols are up to date). A good place to look at is the modules window in the debugging menu. There you should look for the assembly which your file belongs too. First check that the assembly is loaded. Then, from where is it loaded? Then, is the symbols file loaded. Again, where is the symbols file loaded from? Finally check the versions of both.

share|improve this answer

As lexu said:

"recompile/build the project before adding the break-point"

share|improve this answer
1  
Did it occur to you that someone looking for the solution to this problem might already have tried that and it didn't work? – jwg Jan 17 at 11:08
If nobody but you is able to read lexu's comment, why do you need to mention that you're quoting him? – Ed Plunkett Apr 3 at 16:22

This happen often also if you are using a file references to binaries (instead of project references to code in your project), and the compiled binary that you are referencing falls out of sync with the corresponding source code on your machine. This can happen because you downloaded a new version of the binary from source control without the new source code that went with it, or you have a few versions of the binary on your machine and are referencing an old copy, etc. If this is indeed the problem, it's a good reason to use project references as much as it practical.

share|improve this answer
I see what you mean, and that's worth bearing in mind for the future, but the source in question here is a website project, not a class library. – David Mar 18 '10 at 11:26

I made a notice myself as building a program what synchronizes time from remote server at start when program is started to run/debug. Just in this second when my debugged program syncs time with my development machine, the source codes get out of sync and debugging is no more possible because my development machines time is slighly different from when it was builded.

So make sure nothing , not ur developed program or anything else moves your computers clock while you try to debug.

Also, if u had these problems and just clicked all pop-up windows in great hate, make sure you dont have any of your files on solutions properties ignore source code list. That list can be found on -> Solution->Properties->Debug Source Files->Do not look for these source files:

share|improve this answer

I do not like to play with knives but the only thing that worked for me involved editing the .csproj file itself. So, unload the project file, edit it by cutting and pasting the three asp.net files so that they are together in the ItemGroup. However, sometimes it is necessary to go further as explained here: http://carnotaurus.tumblr.com/post/4130422114/visual-studio-debugging-issue-with-files-of-the-same - Also, I give a list of other proposed solutions that did not work for me. I hope it helps.

share|improve this answer

This happens also when debugging a c++ project which loads a module that have been implemented with some CRL language (managed c++/c# etc). In this situation the error message is misleading indeed. The solution is to put "Common language runtime (CLR) support" configuration property to the startup project and recompile that.

share|improve this answer

I read through all of the answers, tried all of them. None worked. What it ended up being is a tableadapter.fill method that was trying to violate constraints, I didnt have the error trapped. This was the first line in that procedure.

This is the orignal code and the first Fill method threw the exception, only it didnt throw it far enough to hit me in the head, it just dumped out of the PageLoad method and back to the calling program, which happened to be the menu system that opened the window. So no fault. But any breakpoint that I put in the procedure would be marked as "The breakpoint will not currently be hit....". After an hour of trying fixes I modified the Dataset to allow the one single stupid null that was in the 20,000 records that the table adapter was trying to pull.. No more problem.

        private void newPageLoadEvent(object sender, EventArgs e)
        {
          this.tPMTaskListFetchTableAdapter.Fill(this.procedureEditor.TPMTaskListFetch);

          taFill();
        this.typeFetchTableAdapter.Fill(this.procedureEditor.TypeFetch);

        this.equipmentModelFetchTableAdapter.Fill(this.procedureEditor.EquipmentModelFetch);

        this.frequencyFetchTableAdapter.Fill(this.procedureEditor.FrequencyFetch);

        this.tPMTaskAssemblyFetchTableAdapter.Fill(this.procedureEditor.TPMTaskAssemblyFetch, Convert.ToInt32(procedureListGV.Rows[0].Cells["idCol"].Value));

        this.tPMPartsListFetchTableAdapter.Fill(this.procedureEditor.TPMPartsListFetch, Convert.ToInt32(tbCurrentProcedureID.Text));

        taskListTreeFill();

        initialPageFormat();

    }
share|improve this answer
Interesting.... – David May 9 '12 at 8:01

Please select Debug in Solution Configurations, instead of Release

Please set it to Debug

Have a great day!

Adi

share|improve this answer
This was my issue. I had compiled in debug mode, changed the code, then later ran it in release mode. No wonder the debugger thought the code was different - the debug symbols were different. When I deleted the bin folder as others suggested, I got an error "no symbols have been loaded for this document." It was only then that I made the connection, and made my way to this answer. It needs more votes! – idor_brad May 1 at 19:08

In my case was this same problem (“The breakpoint will not currently be hit. The source code is different from the original version.”) caused by fact, that I tried add breakpoint to declaration:

DateTime dt;
bool b = DateTime.TryParse(null, out dt);

(first line of code)

So I assume that message is "universal" and may have many different causes.

share|improve this answer

Since I've tried almost everything that listed here and none of it worked, what cleared this issue for me was disabling and re-setting the breakpoint while the project was running. I don't know how this happened, and I don't know why this fixed it, but it's worth a shot.

share|improve this answer

As to why this occasionally happens, I do not know. The error message itself seems pretty self-explanatory, but in some situations doesn't reveal the true underlying cause.

I had this happen to me today while debugging. Regardless of building/rebuilding, the same message kept appearing. In order to get things going again, I had to close VS and open a new instance. After that, I was able to debug, as expected.

share|improve this answer
Thanks for your input. I think the issue is generally sorted by restarting VS, but I seem to remember instances where it was not. To be honest, it happens so rarely that I'm not sure. – David Jan 28 '11 at 12:00

I deleted the bin folder of my project and everything worked perfectly.

share|improve this answer

In my case, problem was in compatibility mode. I have set up earlier compatibility of Visual Studio to WinXP SP3 and problem has been appeared. Now I uncheck compatibility mode and everything is ok.

share|improve this answer
That's not a good idea, you should not turn off this option. Because there is a good reason that there is this option available. – moskito-x Oct 28 '12 at 16:02
Uh, there's no harm in turning off compatibility with WinXP SP3, unless you want your code to be compatible with that platform. – jwg Jan 17 at 11:05

In my case it was caused by [DebuggerStepThrough]. My class was defined in two files like this:

File MyClass.cs:

[System.Diagnostics.DebuggerStepThroughAttribute()]
public partial class MyClass {  
    public void PerfectMethod() { ... }
 }

File MyClass2.cs:

public partial class MyClass 
{
    public void WorkInProgress()
    {
        //Setting a breakpoint here won't work.
        //You will get "Source code is different from the original".
    }
}
share|improve this answer

I was having the same problem and all the solutions listed here didn't help. I then decided to try to recreate the project file and got an error that the path was too long. I copied the entire solution to nearer the root and after a clean rebuild it now works. I had recently moved the files to a deeper location but had no problems up to this point.

I think there must be some build problem with very deep folders that is underlying this error.

Hope this helps.

Ed

share|improve this answer

I tried all the above solutions with no luck. What solved it for me was:

Tools->Options->Projects and Solutions->Build and Run and changing "On Run, when projects are out of date" from "Never build" to "Prompt to build".

I'm positive I didn't change this setting in the first place, but re-setting it fixed my issue

share|improve this answer

I encountered this as well. The conditions that caused my issue:

  • I'm running a full IIS7 instance locally
  • I'm versioning my software into separate projects

I had caused this by opening a previous version (VS prompted to ask if I wanted to point to this instance in IIS debugging, I answered 'Yes'), then opening the current version (again responding to the IIS prompt with a 'Yes'), then attempting to debug in the previous version. Whoops!

To solve, I merely closed and re-opened the previous and intended version, once again asserting it as the debugging source. It wasn't really all that troublesome an issue, but it was troublesome enough to bring me to this thread looking for answers before I figured it out.

share|improve this answer

I suffered from this recently, and in my case I traced the problem back to something I was doing when testing: changing the system time. I'm not suggesting this is the case for everyone, but thought I'd mention it since it hasn't been mentioned already. It appears if you start moving the clock around between debug builds then it can get very confused about what order various files have been created it - I can only assume it is using file modified dates to determine if the source code is valid or not, and which binaries it needs to recompile.

share|improve this answer

Really strange. Somehow I had two of the same code behind file open in the file explorer at the top of Visual Studios. I closed the one I was working on, made my changes in the other one, saved those and now it works. My guess is it had something to do going online with Team Foundation Server in the middle of working on some new changes. Anyway, I hope this helps someone at some point.

share|improve this answer

None of the solutions posted here worked for me. Clean / Rebuild / Restart VS, no luck. Removing/Renaming /obj and /bin did not work. It actually broke for me, I could not start debugging. Perhaps something else was wrong(?). Removing/Renaming "root" folder in Temporary ASP.Net Files just used the same old dll again and again.

I saw that the modules window (Ctrl+D,Ctrl+M) claimed that it was running the same "old" dll as in /bin, not the new one created in /obj. So I removed/renamed only that dll from /bin. After a rebuild I was up and running again and was able to debug with recent/working code.

share|improve this answer

I, too, have spent the last... hour or so trying to figure this out. I tried absolutely every suggestion on this thread, to no avail.

My solution? I moved the breakpoint down one line and it worked perfectly fine.. if anyone has tried everything like I have, try this out. Let me know if anyone else is able to fix their problem this way too.

share|improve this answer

None of these solutions worked for me, however it does work when I start the web site first (Debug -> Start New Instance), then start the Windows app separately.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.