From 9bc8cc1defb7c948aea6a2c23ad6b4144758fe73 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 15 Jan 2016 10:46:30 -0800 Subject: [PATCH] Updating CLI _k-standard-goals to remove use of dnu pack Fixes #355 --- KoreBuild-dotnet/build/_k-standard-goals.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KoreBuild-dotnet/build/_k-standard-goals.shade b/KoreBuild-dotnet/build/_k-standard-goals.shade index fa587d42bf..20230ff91e 100644 --- a/KoreBuild-dotnet/build/_k-standard-goals.shade +++ b/KoreBuild-dotnet/build/_k-standard-goals.shade @@ -145,8 +145,8 @@ default NUGET_FEED = 'https://api.nuget.org/v3/index.json' #nuget-verify target='package' if='File.Exists(PACKAGELIST_JSON_FILENAME) && ShouldVerifyNupkgs' description='Verify if all the packages are generated properly' var commandsDirectory = '${Path.Combine(BASE_DIR, "commands")}' - exec program='cmd' commandline='/C dnu commands install --source ${DNX_TOOLS_FEED} --source ${NUGET_FEED} NuGetPackageVerifier --packages "${commandsDirectory}"' - exec program='cmd' commandline='/C ${Path.Combine(commandsDirectory, "nugetverify")} "${BUILD_DIR}" "${Path.Combine(BASE_DIR, PACKAGELIST_JSON_FILENAME)}"' + exec program='.build/NuGet.exe' commandline='install -ExcludeVersion -pre NuGetPackageVerifier -Source ${DNX_TOOLS_FEED} -out ${commandsDirectory}' + exec program='${Path.Combine(commandsDirectory, "NuGetPackageVerifier", "NuGetPackageVerifier.exe")}' commandline='"${BUILD_DIR}" "${Path.Combine(BASE_DIR, PACKAGELIST_JSON_FILENAME)}"' @{ if (Directory.Exists(commandsDirectory)) {