I want to retrive the product version number of an exe. If possible I need some thing which can work from the command line.
Also is there an utility for unix as well? I need this on both mac and pc.
Thanks in advance.
Gaur
|
I want to retrive the product version number of an exe. If possible I need some thing which can work from the command line. Also is there an utility for unix as well? I need this on both mac and pc. Thanks in advance. Gaur |
|||
|
|
|
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); or
or via reading the PE header of the EXE is probably the best bet: |
|||
|
|