From cf8d30ab0ccf2d31ad4397cc51b71417b32033dd Mon Sep 17 00:00:00 2001 From: Aleksey2 Meleshko Date: Wed, 9 Mar 2022 00:20:10 +0100 Subject: [PATCH] [HotFix] Fix .NET version on Deploy stage --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d55a3b0..2d1c697 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -154,11 +154,12 @@ stages: - job: release displayName: 'Create tag on GitHub and publish NuGet package' - steps: + steps: - task: UseDotNet@2 - displayName: 'Install .NET SDK 2.1.x' + displayName: Use .NET 6.0 inputs: - version: '2.1.x' + packageType: 'sdk' + version: '6.0.x' - task: gitversion/setup@0 displayName: 'Install GitTools'