From a458944235336c6f90da4bcc0d94da3efbb5b0c6 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 14 Nov 2023 15:46:17 -0500 Subject: [PATCH] - adds dotnet 6 for ESRP tasks Signed-off-by: Vincent Biret --- .azure-pipelines/ci-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/ci-build.yml b/.azure-pipelines/ci-build.yml index af5ef50c..ddb64b07 100644 --- a/.azure-pipelines/ci-build.yml +++ b/.azure-pipelines/ci-build.yml @@ -29,8 +29,13 @@ stages: - job: build steps: + - task: UseDotNet@2 # needed for ESRP sign + displayName: 'Use .NET 8' + inputs: + version: 6.x + - task: UseDotNet@2 - displayName: 'Use .NET 6' + displayName: 'Use .NET 8' inputs: version: 8.x