Hello,
I have created two linux projects (MSBuild) in one solution, which are build remotely.
A static library and an application, that uses the library.
If I rebuild the solution/application, it cleans first the library output and then it builds it again. After that
the application cleans it output (which contains now the build library) and then it builds it again.
The compile process is failing, because the library is now missing.
If I do a clean first and the a build, it works properly.
Is there any solution how I can get the rebuild to work, without doing first a clean and then a build?
Thanks in advance!
Peter