diff --git a/build/_k-standard-goals.shade b/build/_k-standard-goals.shade index 2572ad7667..d196df09bb 100644 --- a/build/_k-standard-goals.shade +++ b/build/_k-standard-goals.shade @@ -14,8 +14,9 @@ default BUILD_DIR='${Path.Combine(TARGET_DIR, "build")}' default TEST_DIR='${Path.Combine(TARGET_DIR, "test")}' default Configuration='${E("Configuration")}' default Quiet='${ false }' -default PACKAGELIST_JSON_FILENAME = 'packages.json' +default PACKAGELIST_JSON_FILENAME = 'NuGetPackageVerifier.json' default DNX_TOOLS_FEED = 'https://www.myget.org/F/dnxtools/api/v2' +default NUGET_FEED = 'https://api.nuget.org/v3/index.json' @{ if (string.IsNullOrEmpty(E("DNX_BUILD_VERSION"))) @@ -216,7 +217,7 @@ default DNX_TOOLS_FEED = 'https://www.myget.org/F/dnxtools/api/v2' #nuget-verify target='test' 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} NuGetPackageVerifier --packages "${commandsDirectory}"' + 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)}"' @{ if (Directory.Exists(commandsDirectory))