From 5f7daffaeebd14e2dd5a8061b800c64014bffb39 Mon Sep 17 00:00:00 2001 From: Heavy Bob <ferrettclay@gmail.com> Date: Wed, 16 Apr 2025 06:40:02 +1000 Subject: [PATCH] Fix Version --- AutoTrackR2/AutoTrackR2.csproj | 2 +- AutoTrackR2/Constants.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AutoTrackR2/AutoTrackR2.csproj b/AutoTrackR2/AutoTrackR2.csproj index 8ead1aa..3110af0 100644 --- a/AutoTrackR2/AutoTrackR2.csproj +++ b/AutoTrackR2/AutoTrackR2.csproj @@ -10,7 +10,7 @@ <Configurations>Debug;Release;Test</Configurations> <Platforms>AnyCPU;x64</Platforms> <ApplicationIcon>AutoTrackR2.ico</ApplicationIcon> - <Version>2.0</Version> + <Version>2.12</Version> <GeneratePackageOnBuild>false</GeneratePackageOnBuild> <GenerateAssemblyInfo>true</GenerateAssemblyInfo> <Deterministic>true</Deterministic> diff --git a/AutoTrackR2/Constants.cs b/AutoTrackR2/Constants.cs index af4cfba..78dab89 100644 --- a/AutoTrackR2/Constants.cs +++ b/AutoTrackR2/Constants.cs @@ -2,5 +2,5 @@ namespace AutoTrackR2.Constants; public static class AppConstants { - public static string Version => System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "2.0"; + public static string Version => System.Reflection.Assembly.GetExecutingAssembly().GetName().Version?.ToString(2) ?? "2.0"; } \ No newline at end of file