From db6058fa5c398498f6ff3406f4ee76b829b40b96 Mon Sep 17 00:00:00 2001 From: Juan Hoyos Date: Mon, 25 Jul 2022 21:28:39 -0700 Subject: [PATCH] Allow dotnet-sos install parameter to use --arch This aligns us better with the usage in `dotnet tool install` --- src/Tools/dotnet-sos/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/dotnet-sos/Program.cs b/src/Tools/dotnet-sos/Program.cs index 1074d8433e..55fc1c68a6 100644 --- a/src/Tools/dotnet-sos/Program.cs +++ b/src/Tools/dotnet-sos/Program.cs @@ -40,7 +40,7 @@ private static Command InstallCommand() => private static Option ArchitectureOption() => new Option( - alias: "--architecture", + aliases: new[] { "-a", "--arch", "--architecture" }, description: "The processor architecture to install.") { Argument = new Argument(name: "architecture")