How to find all dependencies of a .NET project?

后端 未结 8 634
一个人的身影
一个人的身影 2020-12-08 10:42

Basically, what I need is something like Dependecy Walker, but it should work with .NET applications. Is there anywhere such tool?

8条回答
  •  长情又很酷
    2020-12-08 11:23

    Dependency Walker will work with .Net too.

    the .Net layer still needs to call down to the core Windows functions like LoadLibrary and GetProcAddress to do the actual work. It is at this core level that Dependency Walker understands what is going on. So, while Dependency Walker may not understand all the language specific complexities of your application, it will still be able to track all module activity at a core Windows API level.

    Reference

提交回复
热议问题