Reputation: 167
I'm trying to PUSH a nupkg to exisiting Feed in Azure DevOps. When I do it using Powershell scripts, I get the error 'The Specified source is invalid.Provide a valid source' even though the source is valid. When I try to recreate a source with the below command, It gives me error 'The source specified has already been added to the list of available package sources. Provide a unique source.'
Upvotes: 0
Views: 1514
Reputation: 32280
According to the NuGet push command reference, the Source
option value should be a URL. Besides, the order of the command line options might be different.
I would try to re-write it as follows:
nuget.exe push ALS.Library.1.0.0.nupkg -Source "http://..." -ApiKey "..."
Upvotes: 4