mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-05-04 00:31:27 +00:00
11 lines
375 B
PowerShell
11 lines
375 B
PowerShell
# https://github.com/edymtt/nugetstandalone
|
|
$destinationFolder = "$PSScriptRoot\packages"
|
|
if (!(Test-Path -Path $destinationFolder)) {
|
|
Write-Host -f Red "Run .\install.ps1 first!"
|
|
exit 1
|
|
}
|
|
|
|
nuget update packages.config -r $destinationFolder
|
|
Remove-Item $destinationFolder -Force -Recurse | Out-Null
|
|
nuget install packages.config -o $destinationFolder -ExcludeVersion
|