mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-12-08 09:05:41 +00:00
9 lines
321 B
PowerShell
9 lines
321 B
PowerShell
# https://github.com/edymtt/nugetstandalone
|
|
$destinationFolder = "$PSScriptRoot\packages"
|
|
if ((Test-Path -Path $destinationFolder)) {
|
|
Remove-Item -Path $destinationFolder -Recurse | Out-Null
|
|
}
|
|
|
|
New-Item $destinationFolder -Type Directory | Out-Null
|
|
nuget install packages.config -o $destinationFolder -ExcludeVersion
|