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)'