Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find all dependencies of a .NET project?

Tags:

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

like image 739
Paulius Avatar asked Oct 13 '08 12:10

Paulius


People also ask

How do I see all dependencies in Visual Studio?

In Solution Explorer, select a project. On the Project menu, choose Project Dependencies. The Project Dependencies dialog box opens.

How do I find the dependencies of a .NET DLL?

Load your DLL into it, right click, and chose 'Analyze' - you'll then see a "Depends On" item which will show you all the other dll's (and methods inside those dll's) that it needs.

How do I get project dependencies?

If you're looking for project dependencies for your solution, which were manually selected in addition to any explicit references you have, you can find those in the . sln file.

What are dependencies C#?

CSharp Online Training A dependency is an object that another object depends on. Dependency Injection (or inversion) is basically providing the objects that an object needs, instead of having it construct the objects themselves.


2 Answers

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

like image 62
jop Avatar answered Oct 22 '22 12:10

jop


For .NET 4, check our CheckAsm: http://www.amberfish.net/

like image 27
Mr. T. Avatar answered Oct 22 '22 13:10

Mr. T.