Assembly dependencies

G

Gaetan

I'm experiencing problems with assembly references and version conflicts. I get many
messages similar to this one:

<<<
Warning: The dependency 'MM_Exceptions, Version=1.0.2060.29180, Culture=neutral' in
project 'SMS' cannot be copied to the run directory because it would overwrite the
reference 'MM_Exceptions, Version=1.0.2062.24444, Culture=neutral'.

Is there a tool to display the list of assemblies dependencies on external DLL and which
version it depends on?

Thanks.
 
G

Guest

ildasm wil tell you this information. Just open your DLL or EXE using this
tool and double click on the MANIFEST node and you will see a list of all the
external reference the library depends upon and their versions.

You should have this tool installed on your computer if you use visual studio.

Hope that helps
Mark R Dawson
 

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