How to find assembly dependencies???

P

Peter Franks

Is there a tool or method to find out all assembly dependencies for a
particular .net binary (.exe or .dll)?

I have a case where a deployed application is apparently missing a
referenced assembly, but I can't determine which one...

Thanks for any info.
 
R

Richard Grimes

Peter said:
Is there a tool or method to find out all assembly dependencies for a
particular .net binary (.exe or .dll)?

I have a case where a deployed application is apparently missing a
referenced assembly, but I can't determine which one...

ILDASM.

The manifest will list all the referenced assemblies, for example:

assembly extern MyLib
{
}

and it will also list the DLLs that you call through platform invoke,
for example:

..module extern kernel32

Richard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top