You can use the following to get the File Version:

FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo("filename.exe");

But how can you get the Assembly Version for a specific EXE file?

link|improve this question

78% accept rate
Take a look at this link and see if it answers your question stackoverflow.com/questions/187495/… – Seventh Element Apr 27 '10 at 19:56
feedback

1 Answer

up vote 11 down vote accepted

From this blog article How to get assembly version without loading it:

AssemblyName.GetAssemblyName("filename.exe").Version

This avoids having to load the assembly in its entirity.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.