M
Matthieu Rossling
Guest
Hello,
We are building a UWP application which is part in c++. For the unit tests, I created a unit test project in c++ and it works fine. However, it doesn't build on our CI server because it cannot find "CppUnitTest.h".
To set up our CI, we are using a docker file and we install VS build tools with the following command line:
C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache `
--includeRecommended`
--add Microsoft.VisualStudio.Workload.UniversalBuildTools`
--add Microsoft.VisualStudio.Workload.ManagedDesktopBuildTools`
--add Microsoft.VisualStudio.Component.Windows10SDK.17134 `
--installPath C:\BuildTools
With this, I cannot get the files needed for the unit tests which should be under "VC\Auxiliary\VS\UnitTest\include\UWP". Do you know which component I should add to get these files?
Thanks!
Continue reading...
We are building a UWP application which is part in c++. For the unit tests, I created a unit test project in c++ and it works fine. However, it doesn't build on our CI server because it cannot find "CppUnitTest.h".
To set up our CI, we are using a docker file and we install VS build tools with the following command line:
C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache `
--includeRecommended`
--add Microsoft.VisualStudio.Workload.UniversalBuildTools`
--add Microsoft.VisualStudio.Workload.ManagedDesktopBuildTools`
--add Microsoft.VisualStudio.Component.Windows10SDK.17134 `
--installPath C:\BuildTools
With this, I cannot get the files needed for the unit tests which should be under "VC\Auxiliary\VS\UnitTest\include\UWP". Do you know which component I should add to get these files?
Thanks!
Continue reading...