更新 Visual Studio 使我的应用程序严重受损
我更新了 Visual Studio Developer 工具,瞧!我的一些代码不再起作用。我可以调试,但是每当我调试时,我在过去一天所做的 90% 的修复都会消失。今天早些时候,它可以与旧的 Visual Studio 一起使用;但现在,当我调试时,代码的效果根本不显示。
我可以在代码编辑窗口中看到代码,但我尝试的任何方式都无法调试。有人知道我该如何解决这个问题吗?
PS 如果这属于超级用户,我很乐意将其放在那里。只要告诉我,我就搬走。
I updated the Visual Studio Developer tools and voila! Some of my code no longer functions. I can debug, but 90% of the fixes I had made in the past day disapears whenever I debug. It worked earlier today with the old Visual Studio; but now, the effects of the code simply don't show up when I debug.
I can see the code in the code-editing window, but it doesn't debug any way I try. Does anybody know how I can fix this?
P.S. If this belongs on SuperUser, I'll be happy to put it there. Simply tell me, and I'll move it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手动清理解决方案和输出文件夹(通过在 Studio 关闭时删除 obj 和 bin 文件夹)。重新开放并重建。如果它位于引用的 DLL 中,则将引用删除到使用者中,构建失败,然后重新添加。
Manually clean the solution and output folders (by deleting the obj and bin folders while Studio is closed). Re-open and rebuild. If it's in a referenced DLL, drop the reference in the consumer, build to get a failure, then re-add.