How to find assembly dependencies???

  • Thread starter Thread starter Peter Franks
  • Start date Start date
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.
 
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
 
Back
Top