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() private string GetApplicationVersion()
{ {
Version version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version; 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() private void ExitApplication()

View File

@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
[assembly: ComVisible(false)] [assembly: ComVisible(false)]
[assembly: Guid("04f08f8d-9e98-423b-acdb-4effb31c0d35")] [assembly: Guid("04f08f8d-9e98-423b-acdb-4effb31c0d35")]
[assembly: AssemblyVersion("6.0.1.3")] [assembly: AssemblyVersion("6.0.2.0")]
[assembly: AssemblyFileVersion("6.0.1.3")] [assembly: AssemblyFileVersion("6.0.2.0")]
[assembly: CLSCompliant(false)] [assembly: CLSCompliant(false)]