Quantcast
Channel: Download all packages from private nuget feed - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by Fabito for Download all packages from private nuget feed

I created a better PowerShell here that download all packages for all versions Find-Package -AllVersions -Source NuGet-Source | ForEach-Object { Install-Package -Name $_.Name -MaximumVersion $_.Version...

View Article



Answer by Andrew K for Download all packages from private nuget feed

With PowerShell you can do this: >Find-Package -Name='Package_Name' -AllVersions -Source Local | Install-Package -Destination 'C:\SOME_PATH' The command will find all the versions of packages with...

View Article

Download all packages from private nuget feed

I want to download all packages in all version from my private nuget feed. Thats it. I have no problem in using powershell, bash, package manager what ever. I can't use a placeholder project - that...

View Article

Answer by Thomas Hallam for Download all packages from private nuget feed

If you just want to download, then save-package is more appropriate than install-packageThis script saves all nuget packages from a nuget server (NuGet-Source) into the current directoryFind-Package...

View Article

Answer by Kyle Burkett for Download all packages from private nuget feed

These solutions did not work for me, so the following is what I did. I was working to migrate TFS 2017 feed to Azure DevOps hosted feed.First, I downloaded all packages from the on-premise self hosted...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images