From 4b47778bfc43f9b9a947d2c432bb1b58ae3e6488 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Thu, 25 Mar 2021 01:34:19 +0700 Subject: [PATCH] Update build system to support .NET 3.1 and 5.0 --- build-system/azure-pipeline.template.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/build-system/azure-pipeline.template.yaml b/build-system/azure-pipeline.template.yaml index feba548..38166d8 100644 --- a/build-system/azure-pipeline.template.yaml +++ b/build-system/azure-pipeline.template.yaml @@ -16,6 +16,15 @@ jobs: clean: false # whether to fetch clean each time submodules: recursive # set to 'true' for a single level of submodules or 'recursive' to get submodules of submodules persistCredentials: true + - task: UseDotNet@2 + displayName: 'Use .NET 5 SDK 5.0.101' + inputs: + version: 5.0.101 + - task: UseDotNet@2 + displayName: 'Use .NET Core Runtime 3.1.10' + inputs: + packageType: runtime + version: 3.1.10 # Linux or macOS - task: Bash@3 displayName: Linux / OSX Build