fix msbuild syntax

This commit is contained in:
paul moore 2023-12-14 14:38:24 -08:00
parent 08341aae30
commit 269786a5ae
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 -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 -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 -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 -Platform=x64