I am a bit clueless if it's possible or not, my current task from my senior is to migrate project scoped feeds from one azure devops organisation. I tried it via REST API, but all I got were empty .nupkg package files.
Is there any possible way to solve this, maybe a native solution?
I can use the Artifact Details - Get Packages and NuGet - Download Package REST API successfully download the .nupkg package files to a folder (here is
C:\Users\Administrator\Desktop\1\package\
).Here is my sample:
Then I can use the nuget push command to push them to a new feed. If you run the powershell in pipeline, then you can use the NuGet push task with a service connection of Target feed location. (I use
$filePATH = "$(Build.ArtifactStagingDirectory)\"
to replace$filePATH= "C:\Users\Administrator\Desktop\1\package\"
in the powershell Script when I run the powershll task in pipeline)