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'