diff --git a/SabreTools.Core/Prepare.cs b/SabreTools.Core/Prepare.cs
index 519a502b..59908a01 100644
--- a/SabreTools.Core/Prepare.cs
+++ b/SabreTools.Core/Prepare.cs
@@ -12,8 +12,8 @@ namespace SabreTools.Core
///
/// The current toolset version to be used by all child applications
///
- //public readonly static string Version = $"v1.0.4";
- public readonly static string Version = $"v1.0.4-{File.GetCreationTime(Assembly.GetExecutingAssembly().Location):yyyy-MM-dd HH:mm:ss}";
+ public readonly static string Version = $"v1.0.5";
+ //public readonly static string Version = $"v1.0.5-{File.GetCreationTime(Assembly.GetExecutingAssembly().Location):yyyy-MM-dd HH:mm:ss}";
///
/// Readies the console and outputs the header
@@ -62,6 +62,7 @@ namespace SabreTools.Core
///
/// Returns true if running in a Mono or .NET Core environment
///
+ /// TODO: Investigate if this is needed when removing .NET Framework 4.8 support
private static bool MonoOrCoreEnvironment
{
get
diff --git a/appveyor.yml b/appveyor.yml
index f0235fb1..a2d4fbb5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,5 +1,5 @@
# version format
-version: 1.0.4-test_{build}
+version: 1.0.5-test_{build}
# vm template
image: Visual Studio 2019