From bf2cf936e143384221d3277ac2a2960c7e2f0005 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Fri, 20 Sep 2024 23:09:46 +0200 Subject: [PATCH] Fix DecompilerVersionInfo.template.cs --- .../Properties/DecompilerVersionInfo.template.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs index 8f8e0ccfcd..6d29f56fb6 100644 --- a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs +++ b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs @@ -6,7 +6,7 @@ public const string Revision = "$INSERTREVISION$"; public const string VersionName = "preview2"; - public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX + public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; public const string FullVersionWithShortCommitHash = FullVersion + "+$INSERTSHORTCOMMITHASH$"; public const string FullVersionWithCommitHash = FullVersion + "+$INSERTCOMMITHASH$"; }