Fileversion

  • Thread starter Thread starter Thore Berntsen
  • Start date Start date
T

Thore Berntsen

Can anyone please help me with the following problem:

I need a functions that read fileversion info from my DLL's and EXE's (both
managed and unmanaged)

Thore Berntsen
VBD
Norway
 
for managed dll and exe's. This can work
System.Reflection.AssemblyName.GetAssemblyName("YourProgram.exe").Version
This give you back a string

Nestor
 
We have a class to read the versions from native dlls in our upcoming Smart
Device Framework, it is a subset of the System.Diagnostics.FileVersionInfo
class available in the desktop .NET framework. Hopefully we'll have a public
beta of the package pretty soon.

Peter
 
Back
Top