vote up 5 vote down star
1

Given the following:

string file = @"c:\somepath\somefile.dll";

How can I find the file and product version numbers of that DLL using .NET?

The dll can be either native or managed.

Thanks.

flag

5 Answers

vote up 12 vote down check

Yes, using System.Diagnostics.FileVersionInfo.

string fileVersion = FileVersionInfo.GetVersionInfo(file).FileVersion;
string productVersion = FileVersionInfo.GetVersionInfo(file).ProductVersion;

Be advised that the file version of an assembly could be different from its assembly version. The assembly version is part of the assembly's identity.

link|flag
Thanks Lars, I somehow overlooked the FileVersionInfo class. – rein Oct 8 at 13:31
vote up 2 vote down

I don't know about native dlls but with managed dlls it works like this:

System.Reflection.Assembly.LoadFile(file).GetName().Version

EDIT: I think you can read the version info in C with GetFileVersionInfo()...

link|flag
1  
Be adviced: That return the Assembly version, not the File version. Both could differ. – Lars Truijens Oct 8 at 13:21
1  
It is also not the same as the win32 function GetFileVersionInfo, which returns the File version and not the Assembly version. – Lars Truijens Oct 8 at 13:22
You are right, ofcourse. – EricSchaefer Oct 8 at 13:25
Doesn't this also load the assembly, including executing static constructors? – Steven Sudit Oct 8 at 13:57
It does. But I believe the static ctors are not called before their classes are used. E.g. your static ctors are not called on app startup, but when you first use a static method of that classes or instantiate objects. But I may recall that wrong. Jon? – EricSchaefer Oct 8 at 14:30
vote up 0 vote down

If you want the file version information then use the FileVersionInfo class (FileVersionInfo documentation)

If you want the assembly version then you will need to load that assembly using reflection. There is an example of how to do this on code plex

link|flag
vote up 3 vote down
 FileVersionInfo fi = FileVersionInfo.GetVersionInfo(path);
 string fileVersion = fi.FileVersion;

In Windows, the "File Version" and "Product Version" are the same(or atleast it is for a managed .dll).

link|flag
vote up 0 vote down

There are three version numbers in an assembly. For info on what values they take, who uses them, and how to read them, see http://all-things-pure.blogspot.com/2009/09/assembly-version-file-version-product.html.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.