I have a Visual studio solution with multiple projects
Let say project Core, CoreExtended, ProjectA and ProjectB.
-- CoreExtended has as dependency Core.
-- Project A and ProjectB have as dependencies CoreExtended an also Core.
When i try to Build with multiple threads, msbuild has a problem because both projects ProjectA an ProjectB try to get Core and it fails. I have revised all dependencies and order. Why Visual Studio does not protect this and compile first ProjectA and then ProjectB? Why other projects than only have Core as a dependency don't fail?
Obviously when I put only one thread when building it work right.
Thanks in advance.