When running .\build.ps1 I end up with the error
The type or namespace name 'TestProject1 ' could not be found (are you missing a using directive or an assembly reference?)[D:\Projects\TestProject1 .csproj]
Task("Build")
.Does(() =>
{
MSBuild("D:/Projects/Test.sln", settings =>
settings.SetConfiguration(configuration));
});
"TestProject1" is an independent project in a solution. It does not referenced with the main or any other projects.
Does anyone have any suggestions? any MSBuild configuration settings to ignore such type of unreferenced project while building the solution using Cake script?