From b4f3d8e03588b7098f6b8ac4a9526f3324754998 Mon Sep 17 00:00:00 2001 From: JT Date: Tue, 1 Oct 2019 15:31:17 +0800 Subject: [PATCH] Install the .net core 3 SDK on the ubuntu image for the time being --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 744ed5a15..5a1d48082 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,6 +16,11 @@ jobs: pool: vmImage: 'ubuntu-16.04' steps: + - task: UseDotNet@2 + displayName: 'Use .NET Core sdk' + inputs: + packageType: 'sdk' + version: '3.x' - template: azure/build.yml - job: Windows_build