2014-10-17 91 views
2

更新到VS 2013 Update 3後,我的Web服務現在每次在調試模式下運行時都會中斷。安裝Update 3 for Visual Studio 2013後沒有符號加載錯誤

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. 

我每一次,因爲它是VS嘗試加載System.Web.pdb文件,無法找到或裝載它得到這個錯誤有時它是一個不同的.pdb文件,但它始終是一個.pdb文件,無法加載。爲什麼它甚至試圖加載這些符號,我該如何讓它停止?

回答

0

我遇到類似的問題時,我感動到Visual Studio 2013更新4.嘗試通過添加以下內容到網絡配置文件中禁用的Visual Studio的瀏覽器鏈接,我希望它爲你的作品太:

<appSettings> 
    <add key="vs:EnableBrowserLink" value="false" /> 
</appSettings> 
+0

謝謝非常!我真的很努力地找到答案。這工作完美。 – brian 2015-11-17 22:24:17