Everything builds ok from VS, and tests are working in the Resharper test-runner. So I don't see any obvious dependency missing.
It's mostly typical csharp projects, about 50 of them, one or two service fabric projects, that has been configured to be ignored by ncrunch.
I have another solution sharing some, but not all, of the projects. Same issue in both.
An interesting thing is that there is only a single project listed as not resolved, and according to the visual studio build order it's the first project to build in both solutions.
Creating a new sln, with only this project
I.e.
Code:
dotnet new sln
dotnet sln add ..\the project\
Exhibits the same issue.
But I did notice another thing checking the processing queue, I also got this error
Quote:[13:11:42.855-LocalBuildTask-69] ERROR (Internal): System.Exception: Code file C:\somefile.cs has no content to compile
at nCrunch.Core.BuildManagement.BuildEnvironment.()
at nCrunch.Core.BuildManagement.BuildEnvironment.Build(SnapshotComponent snapshotComponentToBuild, IList`1 referencedComponents, GridClientId gridClientId, IList`1 customEnvironmentVariables, IPlatformBuildExtender extender, Guid taskId, GridAddress clientAddress)
at nCrunch.Core.Processing.BuildTaskLogic.DoProcessTaskAndReturnSuccessFlag()
at nCrunch.Core.Processing.TaskLogic.ProcessTaskAndReturnSuccessFlag()
at nCrunch.Client.Processing.LocalProcessingTask.ProcessTaskAndReturnSuccessFlag()
at nCrunch.Client.Processing.ProcessingQueue..()
The file in question seem to cause some utf-8 vs. iso-8859-1, confusion having an invalid utf-8 character in a comment. Looks like it could be a bit a work to get that sorted though, will get back to you after fixing this.