Reading a 2.0 manifest with dotnet 1.1

D

DotNetter

Hi,

Is it possible to read data from a dll (such as version, public
token...), which has been created with VS 2005, with a program written
in VS 2003.
When I try to load the assembly (using reflection) it says that
"Version 2.0 is not a compatible version."

Thx
 
M

Mattias Sjögren

Is it possible to read data from a dll (such as version, public
token...), which has been created with VS 2005, with a program written
in VS 2003.

Yes, but not using Reflection, since Reflection first loads the
assembly. You have to use another library or write your own parser.


Mattias
 

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