From e07a3e4e185ab7fd09912ffb298bfb1d16d98105 Mon Sep 17 00:00:00 2001 From: Meera Ruxmohan Date: Thu, 21 Nov 2024 16:58:32 -0800 Subject: [PATCH] Update .NET 10 SDK install dir (#641) --- azure-pipelines-official.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index 90d5960..b0ddd49 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -69,7 +69,7 @@ extends: inputs: version: '9.x' - script: | - powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://dot.net/v1/dotnet-install.ps1'))) $(DotNet10InstallArgs) -InstallDir D:\a\_work\_tool\dotnet" + powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://dot.net/v1/dotnet-install.ps1'))) $(DotNet10InstallArgs) -InstallDir C:\ToolCache\dotnet" dotnet --info displayName: 'Install .NET 10.x'