Mathias F
Mathias F

Reputation: 15911

Debug into nightly build of ASP.NET MVC4 using Symbolserver

I used this description to get the nightly build of ASP.NET MVC for my project

http://blogs.msdn.com/b/henrikn/archive/2012/06/01/using-nightly-asp-net-web-stack-nuget-packages-with-vs-2012-rc.aspx

Its pulls the assemblies sucesfully from nuget and I can run the project.

I now try to debug into the pdb pulled from the MS symbol server. Thats actually the point: I dont know if these symbols are realy located on the servers. Either I am doing something wrong or symbols are not available.

Here are my debug settings:

enter image description here

These are my symbol servers enter image description here

This is what I see when I try to step into a method located in System.Web.Mvc.dll enter image description here

These are the modules loaded:

enter image description here

I downloaded the nightly build on the third of september. Is there anything I am missing?

Upvotes: 1

Views: 766

Answers (1)

Ben Foster
Ben Foster

Reputation: 34820

I experienced exactly the same issue. You need to use the Symbols hosted on MyGet. Please see:

http://blogs.msdn.com/b/webdev/archive/2012/08/30/getting-symbols-and-source-with-asp-net-nightly-nuget-packages.aspx

Upvotes: 1

Related Questions