From 99474a270989313d78908b7d86061bfcbbedb938 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Wed, 13 Jan 2016 17:59:03 -0800 Subject: [PATCH] Removed use of dnu commands --- build/_k-standard-goals.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/_k-standard-goals.shade b/build/_k-standard-goals.shade index f233203b28..90519f56c9 100644 --- a/build/_k-standard-goals.shade +++ b/build/_k-standard-goals.shade @@ -193,8 +193,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)) {