aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchDependency.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-06 14:06:02 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-06 14:06:02 -0700
commitcd4142d3cac144c6f4e558cdfe8403e1987ff833 (patch)
treedd1a48460957d170c846d78d5ee61980e7b2c693 /scripts/fetchDependency.ps1
parent0b97b05a7e905aa1eca38c93b7625650def2aab8 (diff)
downloadvcpkg-cd4142d3cac144c6f4e558cdfe8403e1987ff833.tar.gz
vcpkg-cd4142d3cac144c6f4e558cdfe8403e1987ff833.zip
Bump version of nuget to 4.3.0 (was 4.1.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 80d6d2abb..665376baf 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -116,11 +116,11 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "nuget")
{
- $requiredVersion = "4.1.0"
- $downloadVersion = "4.1.0"
- $url = "https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe"
+ $requiredVersion = "4.3.0"
+ $downloadVersion = "4.3.0"
+ $url = "https://dist.nuget.org/win-x86-commandline/v4.3.0/nuget.exe"
$downloadPath = "$downloadsDir\nuget-$downloadVersion\nuget.exe"
- $expectedDownloadedFileHash = "4c1de9b026e0c4ab087302ff75240885742c0faa62bd2554f913bbe1f6cb63a0"
+ $expectedDownloadedFileHash = "386da77a8cf2b63d1260b7020feeedabfe3b65ab31d20e6a313a530865972f3a"
$executableFromDownload = $downloadPath
$extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED
}