From abd30f3e41ac57e036f813136a42e1ec9bda2336 Mon Sep 17 00:00:00 2001 From: Tomas Agustin Raies Date: Thu, 7 May 2020 16:37:00 -0700 Subject: [PATCH] Change build order in build.cmd (#2787) This seems to fix the missing Generated Files\version_gen.h error --- .pipelines/build.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/build.cmd b/.pipelines/build.cmd index c28eae8706..84226c0139 100644 --- a/.pipelines/build.cmd +++ b/.pipelines/build.cmd @@ -1,6 +1,6 @@ cd /D "%~dp0" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=amd64 -host_arch=amd64 -winsdk=10.0.18362.0 +call msbuild ../PowerToys.sln /p:Configuration=Release /p:Platform=x64 || exit /b 1 call msbuild ../src/common/notifications/notifications_dll.vcxproj /p:Configuration=Release /p:Platform=x64 || exit /b 1 call msbuild ../src/common/notifications_winrt/notifications.vcxproj /p:Configuration=Release /p:Platform=x64 || exit /b 1 -call msbuild ../PowerToys.sln /p:Configuration=Release /p:Platform=x64 || exit /b 1