Modern Equivalent of Visual Studio 6 “Depends” utility

前端 未结 7 1673
你的背包
你的背包 2021-01-18 11:04

Is there a good tool that will look at a .NET assembly and tell you all of the dependencies it has on other assemblies? Sort of like the old depends.exe from VS6 days.

7条回答
  •  一向
    一向 (楼主)
    2021-01-18 11:18

    If you want a tool that comes with the Microsoft SDK (rather than third party) use ildasm.exe, the .NET assembly disassembler. While it won't show code in anything but IL, it will show metadata, names and assembly dependencies.

提交回复
热议问题