From def991eb5bc727ddec85cc51d8b473d169bcf86e Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 2 Jun 2019 20:48:18 -0600 Subject: [PATCH] Upgrade to VS 2019 on build agents --- azure-pipelines.yml | 3 ++- azure-pipelines/build.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b6567ab4..a9b4933d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,6 +12,7 @@ variables: jobs: - job: Windows - pool: Hosted VS2017 + pool: + vmImage: windows-2019 steps: - template: azure-pipelines/build.yml diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index 4f9c5df7..dc988a09 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -48,7 +48,7 @@ steps: # Use VSBuild to pack because `dotnet pack` can't build VSIX projects. - task: VSBuild@1 inputs: - vsVersion: 15.0 + vsVersion: 16.0 solution: MessagePack.sln msbuildArgs: /t:build,pack /m /v:m /bl:"$(Build.ArtifactStagingDirectory)/build_logs/msbuild.binlog" platform: $(BuildPlatform) @@ -64,7 +64,7 @@ steps: - task: VSBuild@1 inputs: - vsVersion: 15.0 + vsVersion: 16.0 solution: src\MessagePack.UnityClient\MessagePack.UnityClient.sln msbuildArgs: /t:build /m /v:m /bl:"$(Build.ArtifactStagingDirectory)/build_logs/msbuild.unity.binlog" platform: $(BuildPlatform)