mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-12-13 03:26:06 +00:00
* Update Newtonsoft.Json to version 10.0.3 * Update Newtonsoft.Json.Schema to version 3.0.3 * Add Microsoft.Net.Compiles dependency * Improve build/update process * Use deterministic builds for Scoop.Validator.dll and validator.exe
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
|