Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

C# desktop application on express edition. Worked then didn't work 5 seconds later.

I tried the following.

  • Ensure debug configuration, debug flag, and full debug info are set on all assemblies.
  • Delete all bin and obj folders and all DLLs related to the project from my entire machine.
  • Recreate projects causing the problem from scratch.
  • Reboot.

I have two WinForms projects in the solution. One of them loads the debug info, one doesn't. They both refer to the assembly I'm trying to get debug info on in exactly the same way in the project file. Any ideas?


I want to add in here, mostly for myself when I come back to review this question, that symbols are not loaded until the assembly is loaded, and the assembly is not loaded until it is needed. If the breakpoint is in a library that is only used in one function in your main assembly, the symbols will not be loaded (and it will show the breakpoint as not being hit) until that function is called.

share|improve this question
Made them both load debug info. And try to unload one of the projects you do not run at the moment. – Vasiliy Borovyak Jan 28 '10 at 16:16
5  
When debugging, goto to the Debug, Windows, Modules view. This will show info about loaded modules and symbol status. You can right click a module and try to load the symbols from another location. – ShellShock Jan 28 '10 at 16:19
1  
Express edition does not have Modules view. – Instance Hunter Jan 28 '10 at 16:25
2  
Good point about assemblies not loaded until needed. The debugger will show that the breakpoint won't be hit, but the display will change/your breakpoint WILL be hit once the assembly is loaded. A cheesy workaround this UI issue would be to make a call to the assembly at program start to force the assembly to be loaded. – Tim Coker Oct 17 '11 at 13:16
I have Multiple Project in a solution. Some of them are Class Libraries.. am using there refrencnes in other Solution and projects.. During Debbuging: I found that its not going there i put breakpoint but showing a messege that is also follwing your steps – Muhammad Azeem Oct 19 '12 at 10:35
show 1 more comment

17 Answers

up vote 58 down vote accepted

Start debugging, Debug + Windows + Modules. Right-click the assembly in the list, Symbol Load Information. You'll get a dialog that lists all the directories where it looked for the .pdb file for the assembly. Verify that list against the actual .pdb location. Make sure it doesn't find an old one.

In normal projects, the assembly and its .pdb file should always have been copied by the IDE into the same folder as your .exe. The bin\Debug folder of your project. Make sure you remove one from the GAC if you've been playing with it.

share|improve this answer
This did enable me to ensure it was loading correctly in VS 2010 beta. What made it start working is entirely beyond me, but I will give you the answer since I think this would've worked if it hadn't started working arbitrarily. – Instance Hunter Jan 28 '10 at 16:37
+1 @Daniel definitely right giving the answer to this. Having a similar issue, and this is the right place to look for it / it tells me very clearly the dll I was trying to load has no symbol loaded & it didn't even try to look for symbols. In short, it gives you the right info to continue figuring out the problem. – eglasius May 12 '11 at 18:36
This is interesting, when your own assembly is not "User Code", it coming from a regular project reference ... surely 'Just My Code' is making it to not even try to load it, now the mystery is why it would think it's not user code. – eglasius May 12 '11 at 18:44
Effectively, that was the issue on my case. We had a postcompile that made it to not be considered 'User Code' ... now, I have to see what's up with that, but I do confirmed that without the postcompile modifications, the symbols are loaded. @Hans thank you, saved me some good minutes! sends a virtual beer – eglasius May 12 '11 at 18:58
The question is about express edition, to which this answer does not apply, unfortunately. Actually none of the answers work for me, I also tried removing the Debug folder and rebuilding. – Nicolas Raoul Sep 21 '12 at 8:56
show 1 more comment

Seems like a strange issue. I've had it a couple of times before as well.

Just something simple to try - you may have tried it already. Right click the Solution in solution explorer, click "clean solution", this deletes all the compiled and temporary files associated with a solution.

Do a rebuild of the solution and try to debug again.

I've also had troubles with breakpoints multiple projects in a solution - some compiled as x86, some as x64. Is this your setup?

Patrick

share|improve this answer

I had the same problem and tried several different methods listed on the site but the one that worked for me was disabling the "Just My Code" option in the Debug/General settings. Once I disabled this my breakpoints started working again.

share|improve this answer
1  
Thanks you so much. That just did it for me. – captonssj Feb 26 '12 at 6:42
Yep, on a Windows Phone 8 project with a custom build configuration, this is what did it for me. – GONeale Mar 25 at 2:24
I'm remote debugging and this was the solution for me too. – ray023 Apr 30 at 17:44

Cross posting this fix from Hans K that I found on the similar thread >> HERE <<:

Right click on solution --> Properties

Look under Common Properties --> Startup Project

Select multiple startup projects

select Start action on the projects you need to debug.

Thanks to Hans!

share|improve this answer
This also handles situations where you are trying to debug a WEB project that is a .NET remoting endpoint running on the VS development server and showing "no symbols loaded". – D-Sect Apr 22 at 18:51

You need to enable "Generate debug info" in compiler settings

share|improve this answer

First try rebuilding your project by right mouse click the project > Rebuild If that doesn't work, try a clean of the project (right mouse click on the project > clean)

If that didn't work check this:

  1. Right mouse click your project
  2. select [Properties]
  3. select the [Build] tab
  4. make sure [Define DEBUG constant] and [Define TRACE constant] are checked
  5. Click the [Advanced] button at the bottom of the Build tabpage
  6. Make sure that [Debug Info:] is set to [full]
  7. Click [OK] and rebuild the project ;-)

Hope that works for you! (step 6 generates the .pdb files, these are the debugging symbols)

share|improve this answer

I was integrating a C# application with a static library using VS10 - which I'm new to. I wrote a managed code dll to interface them. I could set breakpoints everywhere but the static lib. I got the message described above - no symbols have been loaded for this document. I tried many of the suggestions above. I could see that the symbols weren't being loaded. I finally noticed a check box Configuration Debug, Enable unmanaged code debugging. That allowed me to set breakpoints in the static lib functions.

share|improve this answer

I was receiving the same error message on breakpoints in source code that I purchased for the purpose of embedding a discussion forum in our existing application. There are numerous possible solutions posted here and elsewhere online, but none worked for me .

However, with the help of Microsoft support, we found the cause of our problem. Are you ready for this? This code was using the "CodeBehind" attribute in the Page directive of the .aspx file instead of the "CodeFile" attribute (ASP.NET 2.0 and beyond). After days of desperation, a simple search and replace solved the problem.

share|improve this answer

For an ASP.Net application, check the properties of the site, ASP.NET tab. Ensure that the correct ASP.NET version is selected.

share|improve this answer

I was going mad trying to figure out why my javascript file would not debug and it took looking in the "Script Documents" (the loaded scripts) to realise my script was not there.

The designer had edited the page headers and replaced my individual dev javascripts with a combined minified version. I didn't realise until an half an hours worth of googling and debugging attempts.

So basically I recommend looking in that list when debugging. If it's not in there, it can't be debugged. Doh.

Designer was doing the right thing, it just should have happened at the release stage, not the beta. A list of which script includes were minified would also be good, so it can be rebuilt for dev.

BTW I tried the Modules stuff above, and obviously it was not that. The script was actually not being loaded in the project. Sigh.

share|improve this answer
I'm not sure how this relates to the actual question... – C. A. McCann Nov 13 '12 at 15:35

I ran into this problem trying to debug the background agent of a WP7 app. As it turned out, this debugging issue was only a symptom of the real problem: My background agent wasn't running at all in debug mode. I had followed the following guide on how to implement a background agent: http://msdn.microsoft.com/en-us/library/hh202941(v=vs.92).aspx

... but forgot to add

#define DEBUG_AGENT

which meant that my agent was never actually being started in debugging mode. Once this line was added, the problem that this thread is about went away.

share|improve this answer

May be a bit late but in case it's useful to anyone, I solved the same problem just by running visual studio as an administrator.

share|improve this answer

I also had the same issue what I rebuild the whole solution (including refereced projects) in x86( or x64)

Even though I set all of my projects to x86 from Configuration Manager (Build->ConfigManager) some of my projects werent set to x86.

So Just to make sure right click on project->properties->Debug Tab, verify Configuration and Platform.

share|improve this answer

Yet Another solution for some cases where this error occurs: check your Build Action.

I had this issue in an asp.net MVC3 project; one of my controllers had for some unknown reason it's Build Action set to EntityDeploy although it should have been Compile.

share|improve this answer

I've done the clean and rebuild thing. That didn't work (it usually does). Now, I am attaching to w3wp before calling through the service, then let it call the service once, hit another breakpoint, then I change the point of execution so that it will run the same line (calling the service) again, then it actually stops at my breakpoint inside the service method.

share|improve this answer

None of the ideas here worked for me but I thank everyone for their efforts - in my case it was a Windows application that referenced a class library project - I could debug the windows application but not the class library. The pdb files were being generated. I did however find that if I debug on the call to the class library, I could step into the library.

share|improve this answer

Sometimes, even though it gives you this error, the breakpoint still gets hit, so just ignore the error. This happens fairly often in the Views of an MVC web app.

share|improve this answer

protected by Community Jul 21 '12 at 9:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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