From 0b1509da5c8fb18f7d2bfa0f0bd58b8bde6cee5f Mon Sep 17 00:00:00 2001 From: dasMulli Date: Sun, 27 May 2018 14:50:54 +0200 Subject: [PATCH] Change completion suggestion to standard capitalization. --- src/dotnet/CommonOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/CommonOptions.cs b/src/dotnet/CommonOptions.cs index c86d8c53a..30c88663e 100644 --- a/src/dotnet/CommonOptions.cs +++ b/src/dotnet/CommonOptions.cs @@ -52,7 +52,7 @@ namespace Microsoft.DotNet.Cli description, Accept.ExactlyOneArgument() .With(name: CommonLocalizableStrings.ConfigurationArgumentName) - .WithSuggestionsFrom("DEBUG", "RELEASE") + .WithSuggestionsFrom("Debug", "Release") .ForwardAsSingle(o => $"-property:Configuration={o.Arguments.Single()}")); public static Option VersionSuffixOption() =>