We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b0c7c0 + 7b5e316 commit b439094Copy full SHA for b439094
1 file changed
build/build.ps1
@@ -30,14 +30,14 @@ If ($Version.Contains('-')) {
30
$KeyConfiguration = 'Final'
31
}
32
33
-# download NuGet.exe if necessary
34
-$nuget = '..\.nuget\NuGet.exe'
+# download nuget.exe if necessary
+$nuget = '..\.nuget\nuget.exe'
35
If (-not (Test-Path $nuget)) {
36
If (-not (Test-Path '..\.nuget')) {
37
mkdir '..\.nuget'
38
39
40
- $nugetSource = 'http://nuget.org/nuget.exe'
+ $nugetSource = 'https://dist.nuget.org/win-x86-commandline/latest/nuget.exe'
41
Invoke-WebRequest $nugetSource -OutFile $nuget
42
If (-not $?) {
43
$host.ui.WriteErrorLine('Unable to download NuGet executable, aborting!')
0 commit comments