We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ab7946 commit 655b659Copy full SHA for 655b659
Program.cs
@@ -99,6 +99,10 @@ public static void Main(string[] args)
99
if (args.Length > 2 && !string.IsNullOrEmpty(args[2]))
100
Enum.TryParse(args[2], true, out targetPlatform);
101
102
+ // ensure version has a suffix
103
+ if (version.Split('-').Length == 1)
104
+ version = $"{version}-lazer";
105
+
106
Console.ResetColor();
107
Console.WriteLine($"Increment Version: {IncrementVersion}");
108
Console.WriteLine($"Signing Certificate: {WindowsCodeSigningMetadataPath}");
0 commit comments