From 206648d0e4634e5c61dcf9370676630268290b59 Mon Sep 17 00:00:00 2001 From: "Radames S. Cruz Moreno" Date: Tue, 10 Jan 2023 15:13:15 -0800 Subject: [PATCH] Install dotnet for NuGet pipeline --- pipelines/nuget.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pipelines/nuget.yml b/pipelines/nuget.yml index 79f88d88f..6200b5753 100644 --- a/pipelines/nuget.yml +++ b/pipelines/nuget.yml @@ -4,6 +4,12 @@ steps: inputs: versionSpec: ${{ parameters.nuget_version }} + - task: UseDotNet@2 + displayName: 'Get .NET Core 6.0 SDK' + inputs: + packageType: 'sdk' + version: '6.0.x' + - task: DownloadBuildArtifacts@0 inputs: downloadType: 'single'