From 269786a5aeefc7171dfd22662a26513443b98817 Mon Sep 17 00:00:00 2001 From: paul moore Date: Thu, 14 Dec 2023 14:38:24 -0800 Subject: [PATCH] fix msbuild syntax --- .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 55ee3df2d..f1dd58ee5 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 -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