From c52fdc360a51e621c8e4251399a67d26f21bf3c9 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sat, 15 Nov 2025 20:58:20 -0500 Subject: [PATCH] Try adding .NET 10 - Helps to remember which build system you're using --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 00f3c11..1110c0e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,12 +11,12 @@ trigger: pool: vmImage: 'windows-latest' -install: -- ps: Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1" -- ps: $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.100' -InstallDir "$env:ProgramFiles\dotnet" - -before_build: - - cmd: dotnet --version +- task: UseDotNet@2 + displayName: 'Install .NET Core SDK' + inputs: + version: 10.x + performMultiLevelLookup: true + installationPath: 'C:\Program Files\dotnet` variables: buildConfiguration: 'Release'