summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-08-21 15:26:58 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-08-21 21:04:55 +0200
commitac3ca11877944b181850e70860bda969263ab2ed (patch)
tree8f0a84310924e6ef56c13b66a0d3227c46309060 /.github
parentc29ca7f434f6bdddc5584d5279e2c3f803ac1679 (diff)
downloadATCD-ac3ca11877944b181850e70860bda969263ab2ed.tar.gz
Use platform for msbuild
* .github/workflows/windows.yml:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 95059d1ce39..bd27ad2574c 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -129,6 +129,6 @@ jobs:
- name: Setup msbuild
uses: microsoft/setup-msbuild@v1.0.1
- name: Build solution TAO/TAO_ACE.sln
- run: msbuild -maxcpucount -p:PlatformTarget=${{ matrix.BuildPlatform }} -p:Configuration=${{ matrix.BuildConfiguration }} TAO/TAO_ACE.sln
+ run: msbuild -maxcpucount -p:Platform=${{ matrix.BuildPlatform }} -p:Configuration=${{ matrix.BuildConfiguration }} TAO/TAO_ACE.sln
- name: Build solution ACE/tests/tests.sln
- run: msbuild -maxcpucount -p:PlatformTarget=${{ matrix.BuildPlatform }} -p:Configuration=${{ matrix.BuildConfiguration }} ACE/tests/tests.sln
+ run: msbuild -maxcpucount -p:Platform=${{ matrix.BuildPlatform }} -p:Configuration=${{ matrix.BuildConfiguration }} ACE/tests/tests.sln