I'm trying to debug .NET code with public available symbols. I setup according instructions:
In Tools-> Options -> Debug I checked "Enable .NET framework source stepping", disabled "Enable just my Code".
In Tools-> Options -> Debug -> Symbols Load All Symbols. I checked a lot of *.pdb's appeared in this folder.
In ASP.NET MVC application I place breakpoint into Application_Start() method.
After debugger run I see call stack, see all methods in call stack (System.Web.dll). But if I try to double click it, only I see is diassembled code (or message - no source code availble).
What could be the reason ?