From 103d4b82c5889ae3acf34c6b281f3f9879d853d4 Mon Sep 17 00:00:00 2001 From: paul moore Date: Thu, 14 Dec 2023 14:43:58 -0800 Subject: [PATCH] more msbuild syntax fixes --- .github/workflows/build-on-pull-request.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-on-pull-request.yml b/.github/workflows/build-on-pull-request.yml index f1dd58ee5..045bc048d 100644 --- a/.github/workflows/build-on-pull-request.yml +++ b/.github/workflows/build-on-pull-request.yml @@ -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