scripts/Windows/install_nuget.ps1
$nugetVersion = '5.8.0' $nugetUrl = "https://dist.nuget.org/win-x86-commandline/v$nugetVersion/nuget.exe" $nugetDir = "$env:SystemDrive\Tools\NuGet3" if (-not (Test-Path $nugetDir)) { $nugetDir = "$env:SystemDrive\Tools\NuGet" if (-not (Test-Path $nugetDir)) { Write-Host "Installing NuGet into $nugetDir" New-Item $nugetDir -ItemType Directory -Force | Out-Null Add-Path $nugetDir Add-SessionPath $nugetDir } else { Write-Host "Updating NuGet in $nugetDir" } } else { Write-Host "Updating NuGet in $nugetDir" } (New-Object Net.WebClient).DownloadFile($nugetUrl, "$nugetDir\nuget.exe") (nuget).split("`n")[0] Write-Host "NuGet updated" -ForegroundColor Green |