visual-studio 禁用 VS 的“下载公共符号”

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3817223/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-22 12:31:00  来源:igfitidea点击:

Disable VS' "downloading public symbols"

visual-studiodebuggingdownload

提问by lance

When I debug my ASP.NET webapp in VS2010, a dialog appears with the title "Downloading public symbols".

当我在 VS2010 中调试我的 ASP.NET webapp 时,会出现一个标题为“下载公共符号”的对话框。

How do I instruct Visual Studio notto attempt this?

我如何指示 Visual Studio不要尝试这样做?

回答by AareP

Disable "Enable .net framework source stepping" in Tools → Options → Debugging settings.

在工具 → 选项 → 调试设置中禁用“启用 .net 框架源步进”。

回答by JaredPar

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.

此外,您可能希望在工具 → 选项 → 调试设置中禁用“启用 .net 框架源步进”。

回答by Merav Kochavi

From VS Main Menu -> Debug -> Options and Settings
Make sure all the following parameters are configured as follows:

从 VS Main Menu -> Debug -> Options and Settings
确保以下所有参数配置如下:

  1. Debugging -> General -> 'Enable Just My Code' is Enabled
  2. Debugging -> General -> 'Enable .NET Framework source stepping' is Disabled(this might occur automatically after setting step 1)

  3. Debugging -> Symbols -> All symbol files locations are unchecked

  1. 调试 -> 常规 ->启用“仅启用我的代码”
  2. Debugging -> General -> 'Enable .NET Framework source stepping' is Disabled(这可能会在设置步骤 1 后自动发生)

  3. 调试 -> 符号 ->所有符号文件位置都未选中