aboutsummaryrefslogtreecommitdiff
path: root/toolsrc
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 /toolsrc
parent0b97b05a7e905aa1eca38c93b7625650def2aab8 (diff)
downloadvcpkg-cd4142d3cac144c6f4e558cdfe8403e1987ff833.tar.gz
vcpkg-cd4142d3cac144c6f4e558cdfe8403e1987ff833.zip
Bump version of nuget to 4.3.0 (was 4.1.0)
Diffstat (limited to 'toolsrc')
-rw-r--r--toolsrc/src/VcpkgPaths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/VcpkgPaths.cpp b/toolsrc/src/VcpkgPaths.cpp
index e3e83af30..d14002e47 100644
--- a/toolsrc/src/VcpkgPaths.cpp
+++ b/toolsrc/src/VcpkgPaths.cpp
@@ -130,10 +130,10 @@ namespace vcpkg
fs::path get_nuget_path(const fs::path& downloads_folder, const fs::path& scripts_folder)
{
- static constexpr std::array<int, 3> EXPECTED_VERSION = {4, 1, 0};
+ static constexpr std::array<int, 3> EXPECTED_VERSION = {4, 3, 0};
static const std::wstring VERSION_CHECK_ARGUMENTS = Strings::WEMPTY;
- const fs::path downloaded_copy = downloads_folder / "nuget-4.1.0" / "nuget.exe";
+ const fs::path downloaded_copy = downloads_folder / "nuget-4.3.0" / "nuget.exe";
const std::vector<fs::path> from_path = Files::find_from_PATH(L"nuget");
std::vector<fs::path> candidate_paths;