aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOfek <ofekshilon@gmail.com>2018-08-12 09:45:27 +0300
committerRobert Schumacher <roschuma@microsoft.com>2018-08-11 23:45:27 -0700
commit555ccaaf67d20a7c7fe1e1a5aef06ca1817989d4 (patch)
tree5b44bc00fba74f7cff2867b1df296595314dd774
parent41a9568e55e3c136b3ea45b7b6346b6fe77673f1 (diff)
downloadvcpkg-555ccaaf67d20a7c7fe1e1a5aef06ca1817989d4.tar.gz
vcpkg-555ccaaf67d20a7c7fe1e1a5aef06ca1817989d4.zip
nuget export: fix displayed file name (#4068)
* Initial addition of native visualizer, to improve debugging experience. * Fix displayed export name, to match the real file name
-rw-r--r--toolsrc/src/vcpkg/export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg/export.cpp b/toolsrc/src/vcpkg/export.cpp
index 83d08ef77..8161c0a62 100644
--- a/toolsrc/src/vcpkg/export.cpp
+++ b/toolsrc/src/vcpkg/export.cpp
@@ -155,7 +155,7 @@ namespace vcpkg::Export
const int exit_code = System::cmd_execute_clean(cmd_line);
Checks::check_exit(VCPKG_LINE_INFO, exit_code == 0, "Error: NuGet package creation failed");
- const fs::path output_path = output_dir / (nuget_id + ".nupkg");
+ const fs::path output_path = output_dir / (nuget_id + "." + nuget_version + ".nupkg");
return output_path;
}