From 6162cf34a0f1cd6523a5d0443bf33b37b22af935 Mon Sep 17 00:00:00 2001 From: Israel Soto Date: Tue, 17 May 2022 22:15:01 -0500 Subject: [PATCH] [CI] Added task to download .NET 2.1.818 * This version is used by Cake v0.33.0 --- azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f4910b7fb..8add6b35e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,8 +30,13 @@ jobs: xcode: '13.2' cake: '0.33.0' initSteps: + # Cake v0.33.0 uses this version - task: UseDotNet@2 - displayName: install .NET $(DotNetVersion) + displayName: Install .NET 2.1.818 + inputs: + version: '2.1.818' + - task: UseDotNet@2 + displayName: Install .NET $(DotNetVersion) inputs: version: $(DotNetVersion) - pwsh: |