From 68e8940c5a600b4951dbf427b79afec2a936700e Mon Sep 17 00:00:00 2001 From: Timothee 'TTimo' Besset Date: Sun, 25 Apr 2021 16:18:18 -0500 Subject: [PATCH] how to invoke msbuild --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 991a032a..56206c7a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: scons target=setup - name: Build GtkRadiant - run: msbuild /p:Configuration=Release /p:Platform=Win32 /target:radiant + run: "${Env:ProgramFiles(X86)}\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" /p:Configuration=Release /p:Platform=Win32 /target:radiant - name: Build q3map2 x64 - run: msbuild /p:Configuration=Release /p:Platform=x64 /target:q3map2 \ No newline at end of file + run: "${Env:ProgramFiles(X86)}\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" /p:Configuration=Release /p:Platform=x64 /target:q3map2 \ No newline at end of file