From 02f82620d06bc2a092d8dd7b15cdb8cc52769127 Mon Sep 17 00:00:00 2001 From: Jamie Date: Fri, 17 Jan 2020 16:09:42 +0000 Subject: [PATCH] Update ci-build.yaml for Azure Pipelines --- ci-build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci-build.yaml b/ci-build.yaml index 90c29ae2c..2d2c147e2 100644 --- a/ci-build.yaml +++ b/ci-build.yaml @@ -27,8 +27,10 @@ pool: vmImage: 'ubuntu-latest' steps: +## This is needed due to https://github.com/microsoft/azure-pipelines-tasks/issues/8429 +## For the set version tool... - task: DotNetCoreInstaller@1 - displayName: 'Use .NET Core sdk 2.1.505' + displayName: 'Use .NET Core sdk ' inputs: packageType: 'sdk' version: '3.x' @@ -47,7 +49,7 @@ steps: targetType: 'inline' script: | dotnet tool install -g dotnet-setversion - dotnet setversion -r $(gitTag) + setversion -r $(gitTag) - task: Yarn@3 displayName: 'Install UI Dependancies'