If I create a project with the following in the csproj file:
Quote:<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1</TargetFrameworks>
</PropertyGroup>
</Project>
the NCrunch fails to build the project, complaining:
Quote:System.Exception: An exception was thrown in the remote environment: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> nCrunch.Common.UserException: Errors occurred while trying to load the project file:
The target "_SplitProjectReferencesByFileExistence" does not exist in the project...
Changing "<TargetFrameworks>" to "<TargetFramework>" fixes the problem. As the latter is a better choice of tag, this is a minor issue. But I thought I'd report it as it took me a fair amount of time to work out why it wasn't building and could catch someone else out too.