mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
fix msbuild syntax
This commit is contained in:
parent
08341aae30
commit
269786a5ae
8
.github/workflows/build-on-pull-request.yml
vendored
8
.github/workflows/build-on-pull-request.yml
vendored
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user