我在哪里可以获得 Mdbg?
我希望能够使用 Mdbg 调试 .net 代码。除了安装 Visual Studio 之外还有什么方法可以获取它(假设这是一种有效的获取方法)?
I'd like to be able to debug .net code using Mdbg. Is there any way of getting it besides installing Visual Studio ( assuming this is a valid way of obtaining ) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Mdbg - .NET Framework 命令行调试器随以下一起安装Windows SDK 7|10 以及 Visual Studio。
现在它也可以在 Nuget 上使用。
还有 CLR 托管调试器示例,它是演示如何使用 .net 构建命令行调试器的示例程序。
请注意,这是源代码,不附带预构建的二进制文件,因此您需要安装 .net SDK 或 Visual Studio 才能首先构建它。(它现在包含预构建的二进制文件解压后在 bin/release 文件夹中)Mdbg - The .NET Framework Command-Line Debugger comes installed with the Windows SDK 7|10 as well as Visual Studio.
It's now available on Nuget too.
There is also the CLR Managed Debugger Sample which is a sample program that demonstrates how to build a command line debugger using .net.
Note that this is source code and does not come with pre-built binaries so you will have have the .net SDK or visual studio installed to be able to build it first.(It does now include prebuilt binaries in the bin/release folder after you've unzipped it)版本 4(适用于 .NET 4.0)可以从
http://www 下载.microsoft.com/download/en/details.aspx?id=2282
Version 4 (for .NET 4.0) can be downloaded from
http://www.microsoft.com/download/en/details.aspx?id=2282
https://www.nuget.org/packages/MDbg/ 是另一个位置。似乎是 CLR 4,并且比版本 4 有更多的 catch 命令选项
https://www.nuget.org/packages/MDbg/ is another location. Seems to be CLR 4 and has more options for the catch command then the Version 4
此处提供的官方 Microsoft 链接不再有效。
幸运的是,有人在源代码仍然可用时下载了它并创建了一个 GitHub 存储库:
https://github.com/i Chengzi/MDbg-Sample
The official Microsoft links provided here no longer work.
Luckily, someone downloaded the source while it was still available and made a GitHub repo:
https://github.com/ichengzi/MDbg-Sample