From a89ee70142756141fba44f76cf845e701206e01b Mon Sep 17 00:00:00 2001 From: hfiref0x Date: Sun, 5 Jul 2026 10:30:27 +0700 Subject: [PATCH 1/2] Update MSBuild toolset version to v145 --- .github/workflows/msbuild.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 40d15d5..f2fddad 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -24,7 +24,7 @@ jobs: - name: Build WinObjEx64 working-directory: ./Source - run: msbuild /m /p:Platform=x64 /p:Configuration=Release /p:PlatformToolset=v143 WinObjEx64.sln + run: msbuild /m /p:Platform=x64 /p:Configuration=Release /p:PlatformToolset=v145 WinObjEx64.sln - name: Build WinObjEx64 package run: | @@ -34,7 +34,7 @@ jobs: - name: Build WinObjEx64 Plugins working-directory: ./Source - run: msbuild /m /p:Platform=x64 /p:PostBuildEventUseInBuild=false /p:Configuration=Release /p:PlatformToolset=v143 WinObjEx64_Plugins.sln + run: msbuild /m /p:Platform=x64 /p:PostBuildEventUseInBuild=false /p:Configuration=Release /p:PlatformToolset=v145 WinObjEx64_Plugins.sln - name: Gather all plugin DLLs run: | From d8aee1fa746087b0f4881c6477dc265bdb1e37af Mon Sep 17 00:00:00 2001 From: hfiref0x Date: Sun, 5 Jul 2026 10:48:16 +0700 Subject: [PATCH 2/2] Update Visual Studio version and platform toolset --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 736e8d6..f87aff8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,14 +3,14 @@ branches: only: - master skip_tags: true -image: Visual Studio 2022 +image: Visual Studio 2026 configuration: Release platform: x64 shallow_clone: true clone_folder: c:\projects\winobjex64 build_script: -- cmd: msbuild Source\WinObjEx64.sln /m /verbosity:normal /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v143 +- cmd: msbuild Source\WinObjEx64.sln /m /verbosity:normal /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v145 artifacts: - path: Source\WinObjEx64\output\x64\Release\bin\WinObjEx64.exe