Lightweight .NET debugger?

后端 未结 8 674
醉话见心
醉话见心 2020-12-24 06:46

I frequently need to debug .NET binaries on test machines (by test-machine, I mean that the machine doesn\'t have Visual Studio installed on it, it\'s frequently re-imaged,

8条回答
  •  既然无缘
    2020-12-24 07:23

    For a bit nicer interface than MDbg or cordbg take a look at DbgCLR - a cut-down version of the Visual Studio debugger (at least it looks like one) that handles only managed code. It comes with the .NET Framework (I'm not sure if it's in the runtime or if you need the Framework SDK):

    • http://msdn.microsoft.com/en-us/library/7zxbks7z(VS.85).aspx

    Note that cordbg is deprecated in favor of MDbg (even though MDbg doesn't have all of cordbg's features):

    • http://blogs.msdn.com/jmstall/archive/2005/11/07/views_on_cordbg_and_mdbg.aspx

    And in looking back at MDbg whle writing this post, I found that there's a GUI wrapper available for MDbg (which I haven't tried):

    • http://blogs.msdn.com/jmstall/archive/2005/02/04/367506.aspx

提交回复
热议问题