Currently I am getting the following error:
An exception was thrown in the remote environment: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.IOException: The path 'C:\dev\Interaction\Interaction-Core-7-Plus\core\.msbuild\*.props' could not be processed because it is not of legal form
I think this is caused by the following lines being present in the project file
<Import Project="$(SolutionDir).msbuild\*.props" />
<Import Project="$(SolutionDir).msbuild\*.targets" />
<Import Project="$(ProjectDir).msbuild\*.props" />
<Import Project="$(ProjectDir).msbuild\*.targets" />
Specifying a wildcard is valid as per the documentation
https://learn.microsoft....nt-msbuild?view=vs-2022
Is there anything I can do to navigate around this so I can use NCrunch?