We are migrating our compilation system to msbuild
, and we've found that some projects report the following error:
c:\src\libs\a_lib\A\A.vcxproj : error MSB4057: The target "C" does not exist in the project.
c:\src\libs\a_lib\B\B.vcxproj : error MSB4057: The target "C" does not exist in the project.
c:\src\libs\a_lib\C\C.vcxproj : error MSB4057: The target "C" does not exist in the project.
c:\src\libs\a_lib\D\D.vcxproj : error MSB4057: The target "C" does not exist in the project.
The compilation line is
msbuild "c:\src\libs\a_lib\a_lib.sln" /nologo "/target:C" /t:build "/p:Configuration=Release" "/p:Platform=Win32"
As can be seen, the solution has several projects. The project itself exists in the solution and can be compiled from within the VS IDE. Also, other targets do not fail (following the example: A, B, D).
Our previous compilation line worked correctly on the same project:
devenv "c:\src\libs\a_lib\a_lib.sln" /project "C" /build /nologo "Release|Win32"