From 58672de96a2421adbc11bec53de471870bf5e9d3 Mon Sep 17 00:00:00 2001 From: Erick Yondon Date: Tue, 26 Oct 2021 18:23:26 -0700 Subject: [PATCH] Change dotnet push parameter types to NoValue from SingleValue --- .../NuGet.CommandLine.XPlat/Commands/PushCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NuGet.Core/NuGet.CommandLine.XPlat/Commands/PushCommand.cs b/src/NuGet.Core/NuGet.CommandLine.XPlat/Commands/PushCommand.cs index a5967f6ae37..c7ff8faf991 100644 --- a/src/NuGet.Core/NuGet.CommandLine.XPlat/Commands/PushCommand.cs +++ b/src/NuGet.Core/NuGet.CommandLine.XPlat/Commands/PushCommand.cs @@ -54,12 +54,12 @@ public static void Register(CommandLineApplication app, Func getLogger) var disableBuffering = push.Option( "-d|--disable-buffering", Strings.DisableBuffering_Description, - CommandOptionType.SingleValue); + CommandOptionType.NoValue); var noSymbols = push.Option( "-n|--no-symbols", Strings.NoSymbols_Description, - CommandOptionType.SingleValue); + CommandOptionType.NoValue); var arguments = push.Argument( "[root]",