We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f94551f + ccd7132 commit 843958cCopy full SHA for 843958c
src/AzureSignTool/Program.cs
@@ -30,6 +30,12 @@ public static Task<int> Main(string[] args)
30
return Task.FromResult(E_PLATFORMNOTSUPPORTED);
31
}
32
33
+ if (!OperatingSystem.IsWindowsVersionAtLeast(10))
34
+ {
35
+ Console.Error.WriteLine("Azure Sign Tool requires Windows 10 or later.");
36
+ return Task.FromResult(E_PLATFORMNOTSUPPORTED);
37
+ }
38
+
39
var app = new CommandApp("azuresigntool")
40
{
41
new VersionOption(version: GetVersion(), prototype: "version"),
0 commit comments