From 7bee9f1feb7ecae191edcd7e03f76c32ef9c3551 Mon Sep 17 00:00:00 2001 From: Christian Grasser Date: Mon, 1 Apr 2024 13:24:28 +0200 Subject: [PATCH] tr to build on GH VS 2022 with v143 --- .github/workflows/CI_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 4463474b..6ba7f94d 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: build: - runs-on: windows-2016 + runs-on: windows-latest strategy: matrix: build_configuration: [Release, Debug] @@ -30,7 +30,7 @@ jobs: - name: MSBuild of solution working-directory: . - run: msbuild PythonScript.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" + run: msbuild PythonScript.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /p:PlatformToolset="v143" - name: Build docs if: matrix.build_configuration == 'Release'