-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet nuget push - Missing value for option #4864
Comments
I have the same problem, workaround for me is to specify |
The issue appears when one uses |
Getting this error despite documentation stating no value to be specified: https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-push?tabs=netcore2x#options |
Same here :-( Happens (at least) for
|
Same |
Looks (cautiously) simple to fix. For some reason these options are set to expect a SingleValue which doesn't make sense at a glance. |
The --no-symbols looks like a switch however currently behaves as a flag - NuGet/Home#4864 This commit changes the code to use it as a flag.
… a 'true' value (see:[dotnet issue 4864](NuGet/Home#4864))
For me workaround was to use |
I'll take a look as part of Quality Week in a couple weeks. |
When you trying to specify
--no-symbols
or--disable-buffering
flag push command fails with:Why should we need to provide some value for these flags and why it does not present in the docs?
The text was updated successfully, but these errors were encountered: