Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
743 views
in Technique[技术] by (71.8m points)

nuget package - Unable to PUSH nupkg to the existing feed in Azure DevOps

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.'

enter image description here

question from:https://stackoverflow.com/questions/65680107/unable-to-push-nupkg-to-the-existing-feed-in-azure-devops

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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 "..."

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...