views:

68

answers:

1

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?

+1  A: 

You can do this from the Symbols option page

  • Tools -> Options
  • Go To Debugging -> Symbols
  • Uncheck all of the listed symbol file locations
JaredPar
I unchecked the only location listed (Microsoft Symbol Servers), closed VS, re-opened it, and again debugged my webapp. Again the dialog appears, just as before. Is this abnormal?
lance
@lance I'd make sure it was still unchecked but if it is then yes that's unusual. Teh only other thing I can think of is to make sure that "Just My Code Debugging" is enabled. If it still repros I would file a bug with http://connect.microsoft.com
JaredPar
The symbol server location checkbox *was* still unchecked when I re-opened VS. Enabling "Tools > Options > Debugging > General > Enable Just My Code (Managed only)". Many thanks.
lance