From 665983a01f9c604bc3f704f469acb8a08c619d8a Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Thu, 30 Jan 2020 14:07:11 -0800 Subject: [PATCH] Try changing dotnet installation path to avoid clash with the one in tools directory (#3856) --- eng/pipelines/common/restore-internal-tools.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/common/restore-internal-tools.yml b/eng/pipelines/common/restore-internal-tools.yml index b04b6e0..9f20996 100644 --- a/eng/pipelines/common/restore-internal-tools.yml +++ b/eng/pipelines/common/restore-internal-tools.yml @@ -8,7 +8,7 @@ steps: inputs: packageType: sdk useGlobalJson: true - installationPath: $(Agent.ToolsDirectory)/dotnet + installationPath: $(Agent.TempDirectory)/_dotnet - task: NuGetAuthenticate@0 inputs: -- 2.7.4