Disable VS' "downloading public symbols"
When I debug my开发者_如何转开发 ASP.NET webapp in VS2010, a dialog appears with the title "Downloading public symbols".
How do I instruct Visual Studio not to attempt this?
Disable "Enable .net framework source stepping" in Tools → Options → Debugging settings.
You can do this from the Symbols option page
- Tools → Options
- Go To Debugging → Symbols
- Uncheck all of the listed symbol file locations
Also you may want to disable "Enable .net framework source stepping" in Tools → Options → Debugging settings.
From VS Main Menu -> Debug -> Options and Settings
Make sure all the following parameters are configured as follows:
- Debugging -> General -> 'Enable Just My Code' is Enabled
Debugging -> General -> 'Enable .NET Framework source stepping' is Disabled (this might occur automatically after setting step 1)
Debugging -> Symbols -> All symbol files locations are unchecked
精彩评论