From a25c1dba33721d8645cf585d31101bade0ad7162 Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Fri, 17 Nov 2023 21:01:27 +0100 Subject: [PATCH] Due to fx change next version will be major 9 --- .../Properties/DecompilerVersionInfo.template.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs index 3271d1034a..5472ee6d0b 100644 --- a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs +++ b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs @@ -1,10 +1,10 @@ public static class DecompilerVersionInfo { - public const string Major = "8"; - public const string Minor = "2"; + public const string Major = "9"; + public const string Minor = "0"; public const string Build = "0"; public const string Revision = "$INSERTREVISION$"; - public const string VersionName = null; + public const string VersionName = "preview1"; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; public const string FullVersionWithShortCommitHash = FullVersion + "-$INSERTSHORTCOMMITHASH$";