需要发布版本中 .NET 程序集的调试信息
当我的任何 .NET 程序集中发生错误时,用户只会收到一条通用错误,提示“MyApp 遇到问题,需要关闭。对于给您带来的不便,我们深表歉意。”如果可能的话,我希望用户看到错误消息和行号。
据我了解,您需要将 pdb 文件与程序集一起部署。我这样做了,但没有效果。这是一个 Windows 应用程序。
对我所缺少的有什么想法吗?
When an error occurs in any of my .NET assemblies the user just gets a generic error saying "MyApp has encountered a problem and needs to close. We are sorry for the inconvenience." I would like the user to to see the error message and line number if possible.
From what I understand you need to deploy the pdb file along with your assembly. I did that, but it had no effect. This is a Windows application.
Any ideas on what I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在高层捕获异常并向用户呈现一个包含异常信息的自定义对话框。
You should trap the Exception at high level and present a custom dialog box to the user with the exception informations.