Can I read AssemblyFile information in Inno Setup
Posted
by Nifle
on Stack Overflow
See other posts from Stack Overflow
or by Nifle
Published on 2009-09-16T13:51:50Z
Indexed on
2010/05/13
14:04 UTC
Read the original article
Hit count: 346
I would like to read these three values from my application.exe in my Inno Setup script.
[assembly: AssemblyCompany("My Company")]
[assembly: AssemblyProduct("My Great Application")]
[assembly: AssemblyFileVersion("9.3.2")]
Does anyone know how this might be accomplished?
I know I can get the last one using GetFileVersion("path/to/greatapp.exe") is there something similar for the first two?
© Stack Overflow or respective owner