安装Visual Studio 2013的Update 3后,没有符号加载错误

时间:2014-10-17 17:12:58

标签: debugging visual-studio-2013

更新到VS 2013 Update 3后,我的Web服务现在每次在调试模式下运行时都会中断。

我每次都会收到此错误,因为它正在尝试加载System.Web.pdb文件而无法找到它或加载它:

System.StackOverflowException was unhandled
Message: An unhandled exception of type 'System.StackOverflowException' occurred in System.Web.dll

符号加载信息:

C:\Program Files (x86)\IIS Express\System.Web.pdb: Cannot find or open the PDB file.
C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.pdb: Cannot find or open the PDB file.
C:\Windows\System.Web.pdb: Cannot find or open the PDB file.
C:\Windows\symbols\dll\System.Web.pdb: Cannot find or open the PDB file.
C:\Windows\dll\System.Web.pdb: Cannot find or open the PDB file.

有时它是一个不同的.pdb文件,但它总是一个无法加载的.pdb文件。为什么它甚至试图加载这些符号,我该如何让它停止?

1 个答案:

答案 0 :(得分:0)

当我转移到Visual Studio 2013 Update 4时,我遇到了类似的问题。尝试通过将此添加到您的Web配置来禁用Visual Studio Browser Linkage,我希望它也适用于您:

<appSettings>
  <add key="vs:EnableBrowserLink" value="false" />
</appSettings>
相关问题