Display Version Fix

- Fixed the About Page Version to match the current version.
    - Changed from Major.Minor.Build to Major.Minor.Build.Revision
This commit is contained in:
Eric Vasquez
2024-10-08 10:57:26 -05:00
parent c8c4d25393
commit a0bf405dfa
2 changed files with 3 additions and 3 deletions

View File

@@ -233,7 +233,7 @@ namespace EveOPreview.Presenters
private string GetApplicationVersion()
{
Version version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version;
return $"{version.Major}.{version.Minor}.{version.Build}";
return $"{version.Major}.{version.Minor}.{version.Build}.{version.Revision}";
}
private void ExitApplication()