Reputation: 34549
A rather strange question I know... I was previously using the .NET framework source stepping option (tools>options>debugging>general) within Visual Studio 2008.
Now although I have the option turned off, everytime I pause the debugger I start stepping into code I get taken into the .NET framework which takes an age to step back out of as by that point a lot of symbols have been loaded.
Has anyone else had this problem, and does anyone know how to turn it off?
Upvotes: 8
Views: 1331
Reputation: 8560
Try selecting Enable Just My Code (Managed Only) in the same options menu (ie. Tools -> Options -> Debugging -> General).
This option gets disabled when you enable .Net Framework source stepping.
Upvotes: 8
Reputation: 54894
It sounds like you are debugging the source code from .NET which downloads the appropriate PDB's and source from the web. See this URL for an example:
You probably just need to reverse what ScottGu did to turn it on.
Upvotes: 2