How to get Assembly Version (not File Version) or another EXE?
Posted
by Keith Maurino
on Stack Overflow
See other posts from Stack Overflow
or by Keith Maurino
Published on 2010-04-27T19:52:41Z
Indexed on
2010/04/27
20:03 UTC
Read the original article
Hit count: 283
You can do the following to get the the File Version:
FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo("filename.exe");
But how do you get the Assembly Version or a specific EXE file?
© Stack Overflow or respective owner