在MVC视图中调试时出错:无法设置以下断点

时间:2015-03-12 15:58:19

标签: asp.net-mvc asp.net-mvc-4 visual-studio-2013

没有真正的代码示例可以显示,因为无论你把断点放在哪里都会发生。

使用Visual Studio 2013(我们从2012年迁移了这个项目),在任何.cshtml视图中设置断点时出现此错误:

The following breakpoint cannot be set

我尝试了各种各样的事情,比如清理解决方案,关闭和打开VS2013等等。似乎没什么用。

我该怎么办?

1 个答案:

答案 0 :(得分:4)

我们在网站的Web.config

中找到了此节点
<compilation debug="true" targetFramework="4.5" assemblyPostProcessorType="Microsoft.VisualStudio.Enterprise.Common.AspPerformanceInstrumenter, Microsoft.VisualStudio.Enterprise.AspNetHelper, Version=12.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx"/>

瞧,删除assemblyPostProcessorType属性解决了这个问题。在修复之后它应该是这样的:

<compilation debug="true" targetFramework="4.5" />

希望这有助于其他人。这让我的老板疯狂......