Tool or code to display referenced assemblies??

  • Thread starter Thread starter Bob Rock
  • Start date Start date
B

Bob Rock

Hello,

is there a tool around that given an assembly shows the referenced
assemblies???
Any code snippet to do this programmatically???


Regards,
Bob Rock
 
Bob said:
Hello,

is there a tool around that given an assembly shows the referenced
assemblies???
Any code snippet to do this programmatically???

The framework SDK has a sample called ADepends. It's in

"Tool Developers Guide\Samples\adepends"

under the SDK directory.
 
Hello,

is there a tool around that given an assembly shows the referenced
assemblies???
Any code snippet to do this programmatically???

Bob,

Look up the System.Reflection.Assembly.GetReferencedAssemblies
method in the help file. It isn't documented very well, so you may
also want to search Google groups (groups.google.com) and MSDN
(msdn.microsoft.com) for more info on how it's used.

Hope this helps.

Chris.
 
Back
Top