We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a7217 commit a85d97aCopy full SHA for a85d97a
1 file changed
Rubjerg.Graphviz/GraphvizCommand.cs
@@ -27,6 +27,9 @@ internal static string Rid
27
Architecture.Arm64 => "arm64",
28
Architecture.X86 => "x86",
29
Architecture.Arm => "arm",
30
+ // Cast allows compilation in .NET Standard 2.0/2.1.
31
+ // (Architecture)5 is S390x, added in .NET 6.
32
+ (Architecture)5 => "s390x",
33
_ => "unknown"
34
};
35
0 commit comments