编辑并继续
我在这里找到了类似的问题,但没有帮助。
我有一个包含近 10 个项目的解决方案。我可以在调试解决方案时编辑代码,但对于 1 个特定项目(例如“Defect.csproj”),我无法这样做。我收到的错误为
我已将此“Defect.csproj”项目的属性与其他项目进行了比较属性和一切都发现是相同的。在属性的“调试和构建”选项卡中,“配置”为“调试”。优化代码已关闭。谁能建议我我的解决方案有什么问题?
I found a similar question here, but of no help.
I have a solution with nearly 10 projects in it. I am able to edit the code while debugging the solution, but for 1 particular project (say "Defect.csproj"), I am not able to. I am receiving the error as
I have compared the properties of this "Defect.csproj" project ith other project properties and everything is found to be same. In Debug and Build tab in properties, Configuration is Debug. Optimize code is off. Can anyone suggest me whats the problem with my solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在这个项目中使用了任何特殊的参考资料吗?
使用 Office 引用或 Delta Lambda 表达式可能会默默地破坏编辑和继续功能。
另外,使用一些第三方组件 winform 项目确实会对编辑和继续造成严重破坏。
另请记住,使用 linq 会经常中断编辑并继续,并且在活动函数的 try catch 块内进行编辑是不好的。
Are you using any special references on this project?
Using office references or delta lambda expressions can silently break the edit and continue functionality.
Also using some third party component winform items can really play havoc with edit and continue.
Also keep in mind that using linq breaks edit and continue fairly often and editing inside a try catch block on the active function is bad.