From 34eb18c6e612331c6cfebf2da8e61743c6a2facf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lozier?= Date: Thu, 5 Feb 2026 09:18:15 -0500 Subject: [PATCH] Bump .NET SDK for building --- .vsts-ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index e03b0fa94..4d53441e2 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -133,20 +133,25 @@ jobs: # Setup .NET - task: UseDotNet@2 - displayName: Install .NET 6.0 runtime for testing + displayName: Install .NET 10.0 SDK for build + inputs: + packageType: 'sdk' + version: '10.0.x' + - task: UseDotNet@2 + displayName: Install .NET 9.0 runtime for testing inputs: packageType: 'runtime' - version: '6.0.x' + version: '9.0.x' - task: UseDotNet@2 displayName: Install .NET 8.0 runtime for testing inputs: packageType: 'runtime' version: '8.0.x' - task: UseDotNet@2 - displayName: Install .NET 9.0 SDK for build + displayName: Install .NET 6.0 runtime for testing inputs: - packageType: 'sdk' - version: '9.0.x' + packageType: 'runtime' + version: '6.0.x' # Build & Test - powershell: ./make.ps1