Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down