我如何知道故障转储的 CLR 版本?
我有一个 .NET 应用程序崩溃的小型转储。 有没有办法使用 Windbg 或其他工具了解故障机器(生成故障转储)的 CLR 版本(例如 mscorwks.dll 的版本)?
I have a minidump crashed from a .NET application. Is there any way to know the CLR version (e.g. version of mscorwks.dll) of the fault machine (which generates the crash dump) using either Windbg or some other tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
!EEVersion 应提供 CLR 版本。
!EEVersion should give the CLR version.
在 WinDbg 中进行详细说明:
或者,在 Visual Studio 中加载转储并使用 Debug | 窗户 | 模块工具窗口显示其中一些信息。
两个不同 .Net 版本的示例,使用 clr.dll 的版本信息:
.Net 4.0(.x?)
.Net 4.5.2
Go verbose in WinDbg:
Alternatively, load the dump in Visual Studio and use the Debug | Windows | Modules toolwindow to display some of this info.
Examples for two different .Net versions, using the version information of clr.dll:
.Net 4.0(.x?)
.Net 4.5.2
在 WinDbg 中:最简单的方法是使用
!eeversion
命令,但如果您需要更多信息,可以使用lm
命令和v
运行时模块mscorwks
的详细选项。 如果您使用的是 .NET 4,运行时称为 clr,因此在这种情况下您需要相应地更改命令。In WinDbg: the easiest way is to use the
!eeversion
command, but if you want additional info you can use thelm
command with thev
verbose option for the runtime modulemscorwks
. If you're on .NET 4 the runtime is calledclr
, so in that case you need to change the command accordingly.