Skip to content

Commit 3ce43eb

Browse files
Fix for l1 failing test (#5115)
1 parent d6d70a8 commit 3ce43eb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Misc/externals.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ if [[ "$PACKAGERUNTIME" == "win-x"* ]]; then
182182
acquireExternalTool "$CONTAINER_URL/symstore/1/symstore.zip" symstore
183183
acquireExternalTool "$CONTAINER_URL/vstsom/m153_47c0856d_adhoc/vstsom.zip" tf
184184
acquireExternalTool "$CONTAINER_URL/vswhere/2_8_4/vswhere.zip" vswhere
185-
acquireExternalTool "https://dist.nuget.org/win-x86-commandline/v3.4.4/nuget.exe" nuget
185+
acquireExternalTool "https://dist.nuget.org/win-x86-commandline/v4.6.4/nuget.exe" nuget
186186

187187
if [[ "$INCLUDE_NODE6" == "true" ]]; then
188188
acquireExternalTool "${NODE_URL}/v${NODE_VERSION}/${PACKAGERUNTIME}/node.exe" node/bin
@@ -214,7 +214,7 @@ elif [[ "$PACKAGERUNTIME" == "win-arm64" || "$PACKAGERUNTIME" == "win-arm32" ]];
214214
acquireExternalTool "$CONTAINER_URL/symstore/win-arm${BIT}/1/symstore.zip" symstore
215215
acquireExternalTool "$CONTAINER_URL/vstsom/m153_47c0856d_adhoc/vstsom.zip" tf
216216
acquireExternalTool "$CONTAINER_URL/vswhere/2_8_4/vswhere.zip" vswhere
217-
acquireExternalTool "https://dist.nuget.org/win-x86-commandline/v3.4.4/nuget.exe" nuget
217+
acquireExternalTool "https://dist.nuget.org/win-x86-commandline/v4.6.4/nuget.exe" nuget
218218

219219
if [[ "$INCLUDE_NODE6" == "true" ]]; then
220220
acquireExternalTool "${NODE_URL}/v${NODE_VERSION}/${PACKAGERUNTIME}/node.exe" node/bin # Not available for Windows ARM

src/dev.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ if [[ ($DOTNET_SDK_VERSION == "") || ($DOTNET_RUNTIME_VERSION == "") ]]; then
6060
fi
6161

6262
DOTNET_DIR="${REPO_ROOT}/_dotnetsdk"
63+
NUGET_DIR="${REPO_ROOT}/_l1/externals/nuget"
6364

6465
BUILD_CONFIG="Debug"
6566
if [[ "$DEV_CONFIG" == "Release" ]]; then
@@ -441,6 +442,7 @@ restore_sdk_and_runtime
441442
heading ".NET SDK to path"
442443
echo "Adding .NET SDK to PATH (${DOTNET_DIR})"
443444
export PATH=${DOTNET_DIR}:$PATH
445+
export PATH=${NUGET_DIR}:$PATH
444446
echo "Path = $PATH"
445447
echo ".NET Version = $(dotnet --version)"
446448

0 commit comments

Comments
 (0)