Modern Equivalent of Visual Studio 6 “Depends” utility

前端 未结 7 1672
你的背包
你的背包 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:42

    Umm, .NET Reflector?

    Edit: To find detailed information on the assemblies required by a given assembly, load the assembly into Reflector, and expand the namespace. You should see the assembly name listed. Expand that and you will see "References". Expand References to view the assemblies required. Selecting one of those will give version and name info below.

    Hope that helps.

    0 讨论(0)
提交回复
热议问题