Created
January 8, 2015 19:36
-
-
Save bronumski/d393800f9af2fd78835c to your computer and use it in GitHub Desktop.
Get Assembly File Version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assembly assembly = Assembly.GetExecutingAssembly(); | |
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location); | |
string version = fvi.FileVersion; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment