How to debug through .NET Framework source code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:09:39Zhttp://stackoverflow.com/feeds/question/373796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/373796/how-to-debug-through-net-framework-source-code6How to debug through .NET Framework source code?Andrew Arnott2008-12-17T06:28:19Z2009-08-28T22:00:10Z
<p>I've followed the steps outlined in <a href="http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx" rel="nofollow">http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx</a> to enable source debugging of the .NET Framework, and I had it working in the past. Now that I'm using .NET 3.5 SP1, it seems to have stopped working. Beyond the steps in the blog entry I just mentioned, what special steps can I make to get source debugging working again?</p>
http://stackoverflow.com/questions/373796/how-to-debug-through-net-framework-source-code/373815#3738151Answer by Aamir for How to debug through .NET Framework source code?Aamir2008-12-17T06:39:07Z2008-12-17T06:39:07Z<p>You probably need to refresh your downloaded symbols. In the Symbol settings dialog you specify a cache directory where symbols are cached. Since you have upgraded your .NET framework, therefore, the symbols cached there are most probably the older ones which won't work with the newer dlls. Just clear your directory and then download symbols for .NET 3.5 SP1 again.</p>
http://stackoverflow.com/questions/373796/how-to-debug-through-net-framework-source-code/842883#8428833Answer by kaze for How to debug through .NET Framework source code?kaze2009-05-09T07:47:29Z2009-05-09T07:47:29Z<p>I had the same problem when I upgraded to .NET 3.5 sp1. It seems like it's very simplified with the sp1 release. Now you only have to check the "Enable .NET framework source stepping" (which automatically unchecks "Enable just my code"). You don't have to change anything in the "Symbols" settings anymore.</p>
http://stackoverflow.com/questions/373796/how-to-debug-through-net-framework-source-code/1349597#13495972Answer by Paul Betts for How to debug through .NET Framework source code?Paul Betts2009-08-28T22:00:10Z2009-08-28T22:00:10Z<p>This is broken in the latest GDR, Microsoft needs to fix it</p>