在 Visual Web Developer Express 2010 中删除断点后,它不断返回
就像僵尸一样。我通过单击它来删除它,通过右键单击它来删除它。它不断回来。我关闭该文件,重新启动 VWDE 进程,然后重新启动。没关系,它永远存在。我看不出有什么办法可以摆脱它。
Like a zombie. I delete it by clicking on it, I remove it by right clicking on it. It keeps coming back. I close the file, I restart the VWDE process, I reboot. Doesn't matter, it's there forever. I can't see any way of getting rid of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种可能性是 Visual Studio 无法将已删除的断点保存到磁盘。因此,它会持续整个会话,但会在您重新启动 Visual Studio 时返回。
要测试此检查,看看您的解决方案的 .suo 文件在磁盘上是否为只读。或者干脆删除它并重新启动 Visual Studio,看看问题是否再次出现。 .suo 文件是隐藏的,但应与 .sln 文件位于同一文件夹中。
One possibility here is that Visual Studio is failing to save the deleted breakpoint to disk. Hence it lasts for the session but comes back when you restart Visual Studio.
To test this check to see if the .suo file for your solution is readonly on disk. Or simply delete it and restart Visual Studio and see if the problem comes back. The .suo file is hidden but should be in the same folder as the .sln file.
尝试菜单命令“调试 - 删除所有断点”。
Try the menu command, Debug - Delete All Breakpoints.