From 662a2b97fb77998aad8b88ba047e40069c1c6ea8 Mon Sep 17 00:00:00 2001 From: Alexander Luzgarev Date: Sat, 5 Oct 2019 15:19:05 +0200 Subject: [PATCH] Update build definition --- azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 13eecb1..c43e0ec 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,12 +4,17 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core pool: - vmImage: 'vs2017-win2016' + vmImage: 'windows-latest' variables: buildConfiguration: 'Release' steps: +- task: UseDotNet@2 + displayName: 'Use .NET Core SDK 3.x' + inputs: + version: 3.x + - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)'