1
0
mirror of https://github.com/cc65/cc65.git synced 2024-05-29 08:41:31 +00:00

fix msbuild syntax

This commit is contained in:
paul moore 2023-12-14 14:38:24 -08:00
parent 08341aae30
commit 269786a5ae

View File

@ -68,15 +68,15 @@ jobs:
uses: microsoft/setup-msbuild@v1.1 uses: microsoft/setup-msbuild@v1.1
- name: Build app (x86 debug) - 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) - 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) - 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) - 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