当未报告缺少 DLL 时,如何调试 System.DllNotFoundException?
我正在维护一个小型 .NET 应用程序,该应用程序在 .NET shell 中加载 GeckoFX Webview。它可以在绝大多数机器上运行,但在一台特定的 64 位 Windows 7 机器上,它会报告以下异常:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: monoclecatdesktop.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 4db67550
Problem Signature 04: Skybound.Gecko
Problem Signature 05: 1.9.1.0
Problem Signature 06: 4db625ff
Problem Signature 07: 54
Problem Signature 08: 87
Problem Signature 09: System.DllNotFoundException
OS Version: 6.1.7600.2.0.0.768.3
Locale ID: 4105
我尝试使用 Dependency Walker 来定位丢失的 DLL,但没有任何反应。我对 Windows 编程还很陌生,所以我不知道从哪里开始调试。任何建议表示赞赏!
I'm maintaining a small .NET application that loads a GeckoFX webview in a .NET shell. It works on the vast majority of machines but on one specific 64 bit Windows 7 machine it reports the following exception:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: monoclecatdesktop.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 4db67550
Problem Signature 04: Skybound.Gecko
Problem Signature 05: 1.9.1.0
Problem Signature 06: 4db625ff
Problem Signature 07: 54
Problem Signature 08: 87
Problem Signature 09: System.DllNotFoundException
OS Version: 6.1.7600.2.0.0.768.3
Locale ID: 4105
I tried using Dependency Walker to locate the missing DLL, but nothing jumped out at me. I am pretty new to Windows programming so I'm not sure where to begin debugging this. Any advice is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用进程监视器。安装一个过滤器,排除除您的流程之外的所有内容。然后寻找不成功的结果。
If you can use process monitor. Put on a filter excluding everything but your process. Then look for results that aren't SUCCESS.