mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-12-10 10:05:42 +00:00
* Update Newtonsoft.Json and improve validator build process * Improve shimexe build process and create deterministic builds
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
|