vote up 7 vote down star
2

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

flag

4 Answers

vote up 5 vote down check

Reflector - previously from Lutz Roeder, now from Red-Gate software.

link|flag
vote up 1 vote down

See some screenshoot of NDepend dependencies diagram here

link|flag
vote up 1 vote down

During runtime Systernals' ProcessExplorer might be helpful to see an assemblys dependencies.

Also NDepend can show you the dependencies and how tightly your components are coupled.

link|flag
vote up 2 vote down

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

link|flag
I think this is not correct. It will detect the dependencies to native assemblies, yes, but it will not detect/see dependencies to .NET assemblies. For example, it will show a dependency to, say, kernel32.dll, but it won't show dependencies to, say, System.ServiceModel.dll. Can you elaborate? – Christian.K Oct 15 '08 at 9:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.