more msbuild syntax fixes

This commit is contained in:
paul moore 2023-12-14 14:43:58 -08:00
parent 269786a5ae
commit 103d4b82c5
1 changed files with 4 additions and 4 deletions

View File

@ -68,15 +68,15 @@ jobs:
uses: microsoft/setup-msbuild@v1.1
- name: Build app (x86 debug)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug -Platform=Win32
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug -property:Platform=Win32
- name: Build app (x86 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -Platform=Win32
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -property:Platform=Win32
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug -Platform=x64
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug -property:Platform=x64
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -Platform=x64
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -property:Platform=x64