We have a nuget server located in the azure region, which allows certain people to create packages.
If I ran the nuget command prompt, I was asked to provide a username and password. Is it possible to specify a username and password on the command line?
I tried something like -User or -UserName, but there was always an Unknown parameter: '-User'
nuget push -Source "XXX" -ApiKey VSTS -noninteractive mypackage.*.nupkg -User myUsername
Is there a way to provide credentials from the commend line?
source share