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.
|
Given the following:
How can I find the file and product version numbers of that DLL using .NET? The dll can be either native or managed. Thanks. |
|||
|
|
|
Yes, using System.Diagnostics.FileVersionInfo.
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. |
|||||
|
In Windows, the "File Version" and "Product Version" are the same(or atleast it is for a managed .dll). |
|||
|
|
|
I don't know about native dlls but with managed dlls it works like this:
EDIT: I think you can read the version info in C with |
|||||||||||||||
|
|
If you want the file version information then use the 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 |
|||
|
|
|
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. |
|||
|
|