Ok, what i have:

Visual Studio 2010 RC, W7 x64, started a new project type of Silverlight application. Hosting the Silverlight application in a ASP.NET Web Application Project. Silverlight Version 3.0. Added a LinqToSQL Class, a WCF Service, a Winform Tester Application (Project in the Solution) and a few Classes (also as Projects in the Solution).

Yesterday, suddenly i got the 'The breakpoint will not currently be hit. No symbols have been loaded for this document.' message to appear in the IDE, but it only affects the Web Appliaction, i can debug the Silverlight and the Winform App.

What i tried / did to get rid of the message:

Reset Visual Studio Settings, removed all files in every \Temporary ASP.NET Files Folder (there is one for each 32bit/64bit and for Framework 2.0 and 4.0), tried to debug using Visual Studio Integrated Web server - normally i use IIS, in the project output of the solution i deleted every obj and bin folders in every project folder, created a new solution and added all the projects to this new solution, deleted the solution suo file, created a new ASP.NET Web Application to test if it is a VS-installation issue => i can debug this new project/solution, rebooted the machine several times, repaired the vs.net installation, did an IISReset, removed the Web App from IIS, used the Create Virtual Directory Button under Project Properties of the Web App to create a new Web App in IIS, changed the Framework Version of every project from 3.5 to 4.0. Opened the Solution on my second machine=> same behavior, crawled Microsoft Connect for bugs / similar issues. SPENT 7 HOURS.

So, this happens the 2nd time in my life. last time i solved it by deleting Temporary ASP.NET Files Folder, but this time i need your help.

link|improve this question

50% accept rate
feedback

25 Answers

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.

link|improve this answer
3  
If it's not one things it's another. This time, this was the issue. Other times, other issues. – Mark A Apr 29 '11 at 22:24
3  
sumbf'ingbitch. Only wasted a couple hours on it this time. It was launching the backend just fine, just no symbols... – dethSwatch May 22 '11 at 0:13
Thanks this fixed my problem – tomfumb Jul 29 '11 at 21:40
+1 for sumbf'ingbitch. (I wasted a day on this.) Thank you Hans K! – Civilian Sep 28 '11 at 18:53
This worked but I had to do it a few times (VS 2010, built-in webserver, website) – MGOwen Jan 24 at 9:18
feedback

Whenever I've had this particular error come up, it's turned out that the folder that Visual Studio is loading assemblies from is different from the folder the web-application is running from.

That is, the application server is running the application from C:\dev\MyApplication\bin but Visual studio is debugging from c:\dev\MyOtherApplication\bin (or something along those lines, anyway).

Note - for various reasons, I do my debugging with IIS as the application host instead of the dinky standalone gizmo that most people use. This could influence the usefulness of my answer!

link|improve this answer
1  
This should be marked as the answer to the question. – Tomas Jansson Oct 15 '10 at 14:14
1  
Maybe, but Hans K's answer worked for me. I guess there's multiple answers depending on the situation. – Bob May 9 '11 at 22:21
OK, but how do I know if this is happening? How do I fix it? – MGOwen Jan 24 at 8:52
@MGOwen - in your IIS configuration, check the physical location for the virtual folder containing your services, and make sure it matches the output directory from VStudio. – Bevan Jan 25 at 18:30
feedback

I had the same issue and after googling I found two typical solutions for this:

  1. Make sure the Silverlight debugger is activated in the .Web project. Open up the project properties and select the Silverlight debugger under the "Web" tab.

  2. Restart Visual Studio and delete all bin and obj folders.

But none of these worked for me. Then someone mentioned far down a thread to try using IE as the browser instead. This made debugging and breakpoints work again!

Edit:

Later I have struggled with IE9 not working, because it attaches to the wrong process. Instead of manually attaching to the correct IE process every time, I found a neat trick:

  • Right-click one of the generated pages in the .Web project (.html or .aspx)
  • Click "Browse with..."
  • Set IE as default browser (will only affect Visual Studio's choice of browser)

Now, Visual Studio will launch IE when running the .Web project and attach to the correct process. That should do it.

link|improve this answer
Thanks,this just worked for me! Only problem is: I can't set which browser to run in any config files (can I?), so now I'm stuck as IE as my default browser. Bah. – DanTheMan Apr 5 '11 at 19:47
To avoid having IE as my default browser, I changed the launch settings in the .Web project to run IE with the path as command line parameters. – Andreas Larsen Apr 19 '11 at 14:39
You are awesome. I have been struggling with this issue for the last few days. I even reinstalled visual studio. My default browser was firefox, I tried chrome. It just didn't strike my mind to try IE, what a waste of time. Thanks for the info. – gangt Oct 4 '11 at 5:43
My previous comment about launch settings should not be followed when fixing the problem as explained in my edited answer. Just use the default "Specific page option", or else I believe it may attach to the wrong process. – Andreas Larsen Nov 9 '11 at 19:44
I've check "Silverlight" checkbox on "Web" tab in the .Web project settings. Now it's work. Thanks! – Eugene Maksimov Jan 20 at 6:56
show 2 more comments
feedback

I had the same problem, I was debugging my project, and i had to right click the project and select "new debug instance". I only needed to do this once, then after that it worked as normal.

link|improve this answer
Thanks...your solution works for me .. – Yank Oct 12 '11 at 7:41
feedback

The problem for me turned out to be that the Properties->Build->Optimize code checkbox had been turned on in the Debug configuration. Turned it off, rebuilt, and debugging worked as normal.

link|improve this answer
1  
worked for me. Don't really know why, usually having "optimize code" turned on will just not let you break on { and }. – viggity Oct 25 '11 at 19:23
feedback

The reason for what you faced is that the PDBs ("PDB stands for Program Database, a proprietary file format (developed by Microsoft) for storing debugging information about a program) are not up-to-date, this may be due to some reasons:

1- As Bevan said, you may be debugging another application!

2- You are debugging another version of the same application. For example, you attached a previously built application with the current version of the code for debugging without (re)building it.

Cleaning or Rebuilding the Solution solves such problems for me.

To make sure the problem is not yours, try debugging the same application with VS 2008 (I am afraid it may be a bug in VS 2010 -- it is still beta!).

link|improve this answer
thanks for the heads up.. of course i cleaned / rebuilt the solution but that didn't help. Point 1: how can i debug another app if i tried it on another system? same for Point 2. by the way, it's RC and pretty stable at all.. thanks anyway. – Christian Muggli Feb 20 '10 at 8:03
I did not quite understand your phrase "i tried it on another system"!. Release Candidate does not mean it is bug free, and you will loose nothing if you try it. If you are using IE8, some people said it may be the root of the problem, check this: weblogs.asp.net/abdullaabdelhaq/archive/2009/06/01/… – Sameh Serag Feb 20 '10 at 11:29
I found this also: stackoverflow.com/questions/389290/… people suggested too mush solutions there. Give a look to the inline break point comment there. – Sameh Serag Feb 20 '10 at 12:04
ok i see. my phrase 'i tried it on another system' => copied the solution on a usb stick, deleted all bin/obj folders, opened the solution in VS.NET and tried to debug it. result: same behavior => breakpoint's don't get hit .. thanks for the other link, i'll read it right now. – Christian Muggli Feb 20 '10 at 12:24
Clean + Rebuild doesn't always update .pdb files. What I did - went to /Bin folder of my web app and manually deleted all .pdb files, then rebuilt. Worked like a charm. – Bismark Oct 27 '11 at 9:49
feedback

Okay- here we go:

(In a "silverlight app": please check first that silverlight is checked in "web" in your server project "properties"- If that didnt solve it then try this beneath)

On first time do: run this first: devenv.exe /ResetSettings and 1: In top menu click on debug tag 2: click options and settings 3: In "debugging" and under "general" find "enable .net framework source stepping" 4: Tick the box. 5: And now all the symbols will be downloaded and reconfigured :)

If it happens again after the above just clear the folder where the symbols are:

1: In top menu click on debug tag 2: click options and settings 3: In "debugging" and under "symbols" find the button "empty symbol cache" and click it.

link|improve this answer
feedback

Try to set Silverlight Application Project as as a startup project: right click on project -> 'Set As Startup project. Then press F5 and see if you can catch breakpoints...

Try to delete browsing/temp data in your browser each time You make changes to silverlight application

link|improve this answer
thanks, sure i already tried this.. – Christian Muggli Mar 3 '10 at 8:02
feedback

Another anecdote which might be useful-

I encountered this problem when one of my projects was using file references from a Release output folder. When the build results were placed in a Goods folder, these Release dlls were overwriting the Debug dlls.

The solution was to make sure in the csproj file, my reference's HintPath was

<HintPath>..\..\Core\Goods\$(Configuration)\MyFramework.dll</HintPath>

and not

<HintPath>..\..\Core\Goods\Release\MyFramework.dll</HintPath>

link|improve this answer
feedback

I've just resolved this issue according to Deploying Silverlight Applications. (This answer is a duplicate of some others but I'll attempt to explain it more thoroughly.)

The problem is most likely that your Silverlight application is not being deployed properly to your web application on build / startup. This is a referencing problem - it's simple to understand but not obvious the first time you encounter it.

Just like any other project reference, the referenced project's output should be copied to the referencing project's bin folder in order to debug. For class libraries this happens when you right click and select 'Add Reference...'. For Silverlight, you should add a reference through Project Properties.

  • Right click your project, and select 'Properties'
  • Select the 'Silverlight Applications' tab on the left
  • Press the 'Add...' button and select your Silverlight project from the dialogue box

This adds a reference to the Silverlight application from your hosting web app, and ensures that the xap file will be copied to the web app on build or deploy. That means that the current Silverlight app and its debug files are inside the application being debugged, and you'll be able to step through the code.

link|improve this answer
feedback

Open the Web Application url from the Browser and then in the VS.Net IDE use Tools-->AttachtoProcess

then attach to aspnet_wp.exe.

The Debugger will start working

link|improve this answer
feedback

I had this very issue when at a client where - for each application solution - they copied most shared assemblies to a "References" folder, then added them to the solution both as "Solution items" and as a "Project" within the solution.

Not sure yet why, but some of them were debuggable, some not, even though in the References settings for the assemblies the correct full paths were specified.

This unpredictable behaviour alomst drove me mad :)

I solved this by removing all the assemblies from the "References" folder for which there were projects with source code, and keeping very good track of version information for shared assemblies.

link|improve this answer
feedback

If you are having problems with Silverlight projects the solution can be fairly simple. According to my experience in many cases debugging symbols are not being loaded due to the new ".xap" files not being deployed to temporary folder (either internal VS Cassini or IIS Express). In this situation full rebuilds or resetting VS settings won't help. The easiest solution is just to delete temporary internet files within your browser. If you are using IE for Silverlight development and testing I would recommend switching on "Delete browsing history on exit" option in order not to have such issues in the future.

link|improve this answer
feedback

I tried lots of things. What worked for me. I made the Silverlight app the 'Set as Startup Project' by right clicking on the project. Then I tried to run it (which obviously failed as it relied on RIA Services to a web server that was not running) And then I reset the Web project as the Startup Project .. and hey presto .. it is all working.

link|improve this answer
feedback

I had the same problem. Following worked for me

Go to the web application --> Properties --> Silverlight Applications

If you don't see you Silverlight application in the list there then click Add and select your Silverlight Application from "Project" dropdown and Add it.

link|improve this answer
feedback

This is such a useful thread, a checklist of things to try for this pernicious problem. For me the one that worked was swapping to IE. It took me a while to realise as I was already using IE, I had the project's web properties set so that the start action was to start extenal program

C:\Program Files (x86)\Internet Explorer\iexplore.exe

with the command line arguments

http://localhost/MyProject -private

I needed the -private flag to stop IE caching the swf I'm working on. Switching back to 'specific page' from 'start external program' fixed the 'no symbols have been loaded' problem for me.

link|improve this answer
feedback

I had the same problem on Windows 7 and tried EVERYTHING: cleaned DLLs, investigated Modules list, turned off "Just My Code", and so on.

The problem was solved after I've run Visial Studio "as administrator". Honestly. Why Microsoft couldn't just warn me that it's running NOT "as administrator"? It would save me some hours of work.

link|improve this answer
feedback

The solutions to the same problem in my case was the following combination of steps:

  1. Solution --> Properties Select multiple startup projects select Start action on the projects you need to debug.
  2. Removed the service from Service References and clean up the solution.
  3. Rebuild the service project
  4. Added it back to the Service References
  5. Clean up the solution and rebuild it.
link|improve this answer
feedback

Ha. I tried everything, but what worked was to delete the virtual directory, and let it recreate it when it started again.

link|improve this answer
feedback

Goto Project Properties -> Build -> Advanced...

In the "Output" section select "full" in Debug Info dropdown

link|improve this answer
feedback

I had this problem, but in my case it was because of a delayed loading of the module I was trying to debug. I had a DLL linked to my main project and the DLL is what I was debugging. The DLL was only called when certain functions in the main application were called so VS2010 didn't load the module until those functions were called.

When I started the project I recieved this message, but by the time I executed the function the debugger had loaded the module and the related debugging information.

This thread helped me a lot: http://geekswithblogs.net/dbutscher/archive/2007/06/26/113472.aspx

link|improve this answer
feedback

For those reading that are using Visual Studio 2008, not Visual Studio 2010 and are getting this error. The answers above did not help me in this situation, so I'm sharing my experience.

If you're debugging an IIS Web application in Visual Studio 2008 by attaching to the w3wp.exe process rather than using the ASP.NET Development Server for debugging (start with debugging), this might be your issue:

Visual Studio might be still referencing a symbol file (file used during debugging) from your dll from an IIS process that is out of date. And that symbol file has been recreated by a .NET source code recompile but the IIS process is still referencing the old symbol file.

To fix:

Just stop debugging in Visual Studio, restart the web application, and re-attach to the process. Then the breakpoints should turn from yellow (when you see this error) to red again.

========================

More things to try (found new situation today):

Do each bullet in the link below ONE AT A TIME, but repeat my steps below with each one you try.

http://carnotaurus.philipcarney.com/post/4130422114/visual-studio-debugging-issue-with-files-of-the-same

1.) Stop debugging (press red square icon) in Visual Studio
2.) Clean Solution
3.) Build Solution
4.) [INSERT BULLET INSTRUCTION HERE]
5.) Tools > Attach to Process (or start with debugging)
6.) Start the program that you're attaching to, and run it such that your code will get hit

6 explained:

If attaching to nunit.exe, then open NUnit and run a test so your breakpoint will be hit

If attaching to w3wp.exe (IIS site), then open your site in the browser and go to the page that will hit your breakpoint

link|improve this answer
feedback

I tried renaming the .pdb file in obj\debug folder & did a clean soultion and rebuild . It created a new .pdb file and I am able to hit breakpoints correctly.

link|improve this answer
feedback

Had the same problem

For some reason, one of the DLLs was registered in the GAC, therefore it always had a different version than the code.

Once I removed it from the GAC, problem was solved

link|improve this answer
feedback

I had to manually uninstall all instances of the .dll from the registry, and all instances of the .dll from my local drive. Uninstalled/reinstalled my app and now im hitting breakpoints! Wasted a half a day doing this :(.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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