aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchDependency.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 14:19:48 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 14:19:48 -0700
commite9ba8b0ecbe5c49cda2710acaae0983dfe2552f9 (patch)
tree215795866639e041aedfa851366120272c0726c8 /scripts/fetchDependency.ps1
parent508c21a6f8dece3c2793b302a926d1e663eb8526 (diff)
downloadvcpkg-e9ba8b0ecbe5c49cda2710acaae0983dfe2552f9.tar.gz
vcpkg-e9ba8b0ecbe5c49cda2710acaae0983dfe2552f9.zip
[nuget] Update to 4.4.0 (was 4.3.0)
Diffstat (limited to 'scripts/fetchDependency.ps1')
-rw-r--r--scripts/fetchDependency.ps18
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 1677cb869..df03878eb 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -138,11 +138,11 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "nuget")
{
- $requiredVersion = "4.3.0"
- $downloadVersion = "4.3.0"
- $url = "https://dist.nuget.org/win-x86-commandline/v4.3.0/nuget.exe"
+ $requiredVersion = "4.4.0"
+ $downloadVersion = "4.4.0"
+ $url = "https://dist.nuget.org/win-x86-commandline/v4.4.0/nuget.exe"
$downloadPath = "$downloadsDir\nuget-$downloadVersion\nuget.exe"
- $expectedDownloadedFileHash = "386da77a8cf2b63d1260b7020feeedabfe3b65ab31d20e6a313a530865972f3a"
+ $expectedDownloadedFileHash = "2cf9b118937eef825464e548f0c44f7f64090047746de295d75ac3dcffa3e1f6"
$executableFromDownload = $downloadPath
$extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED
}