Modern Equivalent of Visual Studio 6 “Depends” utility

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

    The best equivalent of depends.exe for .NET, i.e. a tool that shows what assemblies are loaded at runtime (as opposed to Reflector's static(?) analysis) is the MS Assembly Binding Log Viewer (or fuslogvw among friends :)

    It logs all assembly loading infomation - including dinamically loaded assemblies.


    (source: microsoft.com)

提交回复
热议问题