From e1a65b7a6081d4e89a2aebd435bf3d3180e6910a Mon Sep 17 00:00:00 2001 From: Francisco-Gamino Date: Tue, 23 Nov 2021 13:38:05 -0800 Subject: [PATCH] Update the .Net version used by the Core Tools to 6.0 --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 28303cb5..29f028ca 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,12 +35,12 @@ steps: - pwsh: | Invoke-WebRequest 'https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1' -OutFile 'dotnet-install.ps1' - ./dotnet-install.ps1 -InstallDir "$env:ProgramFiles/dotnet" -Version "6.0.100-rc.2.21505.57" -Channel 'release' + ./dotnet-install.ps1 -InstallDir "$env:ProgramFiles/dotnet" -Version "6.0.100" -Channel 'release' displayName: 'Install the .Net version used by the Core Tools for Windows' condition: eq( variables['Agent.OS'], 'Windows_NT' ) - bash: | - curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin -v '6.0.100-rc.2.21505.57' -c 'release' --install-dir /usr/share/dotnet + curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin -v '6.0.100' -c 'release' --install-dir /usr/share/dotnet displayName: 'Install the .Net version used by the Core Tools for Linux' condition: eq( variables['Agent.OS'], 'Linux' )