mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-09-02 11:36:12 +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
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
|