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.

I'm trying to configure Visual Studio 2012 to allow me to step into ASP.NET MVC 4.0 source code. (System.Web.Mvc.dll). I've followed SymbolSource's recommended configuration but when I try to load the symbols, Visual Studio can't locate them.

Recommended configuration

To configure Visual Studio for symbol/server use, follow these instructions:

  1. Go to Tools -> Options -> Debugger -> General.
  2. Uncheck “Enable Just My Code (Managed only)”.
  3. Uncheck “Enable .NET Framework source stepping”. Yes, it is misleading, but if you don't, then Visual Studio will ignore your custom server order (see further on).
  4. Check “Enable source server support”.
  5. Uncheck “Require source files to exactly match the original version”
  6. Go to Tools -> Options -> Debugger -> Symbols. Select a folder for the local symbol/source cache.
  7. Add symbol servers under “Symbol file (.pdb) locations”. Pay attention to the correct order, because some servers may contain symbols for the same binaries: with or without sources. We recommend the following setup:

I am aware that the source code is available on CodePlex, however I'm specifically interested in stepping into the code using a symbol server instead of having to unreference Mvc from the GAC and reference a locally built assembly.

Has anyone had success doing this with MVC 4.0?

share|improve this question
Do you already used it with ASP.NET MVC 3 ? If not: I'm not using MVC 4, but for me was a painful way to get it working with MVC 3. If you are interested I can try to recover my configuration to you. – Luciano Oct 30 '12 at 19:46
I never needed it for MVC 3. I did notice however that the symbols for MVC 3 are hosted on the Microsoft Symbol Server (referencesource.microsoft.com/netframework.aspx) so I imagine that would be fairly straightforward to get working. – silent__thought Oct 31 '12 at 15:15

6 Answers

I can't answer on your question directly and provide you URL with symbols (.pdb) for System.Web.Mvc.dll for ASP.NET MVC 4.0, but probably I can help you to solve the problem in another way.

As well known (see here for example) Microsoft provide the current source code of .NET on http://aspnetwebstack.codeplex.com/. In the post it's described how to use the Nightly version of ASP.NET (the current developer state of the code). If you didn't used Git before you can have problems with downloading RTM version of ASP.NET 4.5 (with ASP.NET MVC 4.0) which you could prefer to use instead of Nightly version. Nevertheless the downloading of the full source code of RTM version is easy enough. You need just to know that Git allows to save copy of the code in branches or tagged versions. In the way you can get access (and download it) to some previous versions of the full code. The link for example provide you jQuery 1.8.2 instead of another link get you the latest developer version which can be unstable. So to download the source code of RTM version you just need to choose "v2-rtm" branch and then click on "Download":

enter image description here

You can use the link to select "v2-rtm" branch directly.

I can repeat that it's not exactly what you asked and I know that compiling of ASP.NET source code could be also a little tricky, but I decided do write the information. If somebody would suggest you the better solution it would be interesting for me too.

share|improve this answer

I had exactly the same issue (correct version but no symbols), but after a day or so of trying everything I've been able to get it working. These are catch-all instructions that worked for me, they may contain unnecessary steps:

  1. Sign up for SymbolSource and follow the VS instructions using the authenticated URL form
  2. Uninstall all versions of MVC with add/remove programs
  3. Remove MVC assembly from the GAC (the question is about modifying MVC but the GAC answer is good)
  4. Remove and then reinstall the MVC 4 reference to your project with NuGet
  5. Start debugging, open the modules window, and cross your fingers that ‘Symbols loaded’ is next to System.Web.MVC when it appears.

(sprinkle in restarts as you see fit, for me the key final step was reinstalling the NuGet reference)

My theory is that as the GAC library is used at runtime in preference to the local reference, the symbols are not found when they are searched for. By removing MVC from the GAC and then reinstalling the NuGet reference, it seems the local reference is used and the symbols are found. It's counterintuitive as the System.Web.MVC.dll files are binary-equivalent between NuGet and the GAC, although they are dated differently.

I'm not totally convinced though as I tried to do the same thing for Razor and that didn't work.

share|improve this answer

Just add a symbol server that serves more then just major releases.

Try this one, contains most minor builds.

http://srv.symbolsource.org/pdb/Public

Verify:

Run VS as administrator.

Check that something have been downloaded to your symbol cache directory.

Goto select only specified modules. Add "System.Web.Mvc.dll"

Set a break point in your code. Start debug. When break point hits rightclick in callstack on any mvc.dll row. Verify that symbols are loaded. if loaded, try dubbleclick on one callstack row to open mvc source.

Get back with where you get in trouble.

share|improve this answer
As I've already stated, I am using this exact symbol server with no results. – silent__thought Nov 7 '12 at 17:57
read edit and get back – Simon Nov 7 '12 at 19:16
Why as administrator? This is not necessary. – abatishchev Mar 7 at 5:40
Well, for me it does not work without running as admin. – Simon Mar 8 at 2:10

I will make some refinements to Luke Gumbley's anwser.

Microsoft tries to make a developer's life easier. Whenever it release an MVC version installer, there should also be a Source to download. So people can use the source to explore what is installed by the Installer, as well as to debug the MVC.

Back to the way of downloading the MVC debug info. Your Visual Studio (I use 2010) will never try to download MVC PDB files from the aforementioned servers if you have MVC4 installed on your system. In this case, your Visual Studio will use the MVC from your GAC when you run debugger.

I have tried the way suggested by Luke Gumbley. However, once you uninstall MVC, your MVC project will not be loaded, and you cannot create a new MVC project since the Template is gone. So please don't unistall MVC. If you do so, you still need to reinstall it. This wastes time.

What you really need to do is exit your Visual Studio, run command

gacutil /u System.Web.Mvc

Then go to C:\Windows\Microsoft.NET\assembly\GAC_MSIL, remove or rename the offending System.Web.Mvc folder. After this, lanuch your Visual Studio, and fetch the MVC package from NuGet.

share|improve this answer

Let me start with that ReSharper provides a handy dialog to step in the code at any time:

enter image description here

So you get the following code screen if you drill to the source code:

enter image description here

But I became curious to accomplish this by hand. I started with proper pdb configuration:

enter image description here

After that I got the following error:

enter image description here

Next I copied the C:\Users\Andrew\AppData\Local\Temp\SymbolCache\MicrosoftPublicSymbols\System.Web.pdb\CA49C4332DE847FA967F58AFF370B70E1\System.Web.pdb to C:\Users\Andrew\AppData\Local\Temp\SymbolCache\System.Web.pdb (to match the lookup path). After that i encountered this:

enter image description here

And it turned out that the mismatching builds are only good for browsing the source, not debugging. (Current machine has VS2012 RC, hence MVC libraries are not RTM). If they match, you'll the the source.

I still don't know why doesn't the lookup path adjust to symbol configuration. Hope this helps.

share|improve this answer
2  
The first screenshort (ReSharper) show no source code of System.Mvc.dll. It shows only the abstract class definition which is available in metadata of the DLL. The question was about the sources of DLL or at least about the URL for Symbols of System.Web.Mvc.pdb. Other your screens shows System.Web.dll (System.Web.HttpApplication) which sources do available from referencesource.microsoft.com. You can verify this if you would include http://referencesource.microsoft.com/symbols as the URL of debugger symbols. – Oleg Nov 5 '12 at 13:30

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.