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:
@@ -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()
|
||||
|
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: Guid("04f08f8d-9e98-423b-acdb-4effb31c0d35")]
|
||||
[assembly: AssemblyVersion("6.0.1.3")]
|
||||
[assembly: AssemblyFileVersion("6.0.1.3")]
|
||||
[assembly: AssemblyVersion("6.0.2.0")]
|
||||
[assembly: AssemblyFileVersion("6.0.2.0")]
|
||||
|
||||
[assembly: CLSCompliant(false)]
|
Reference in New Issue
Block a user