没有真正的代码示例可以显示,因为无论你把断点放在哪里都会发生。
使用Visual Studio 2013(我们从2012年迁移了这个项目),在任何.cshtml视图中设置断点时出现此错误:
The following breakpoint cannot be set
我尝试了各种各样的事情,比如清理解决方案,关闭和打开VS2013等等。似乎没什么用。
我该怎么办?
答案 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" />
希望这有助于其他人。这让我的老板疯狂......