Hi!
After changing a csproj-file to new format:
---
Quote:<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.3;net461</TargetFrameworks>
<PackageId>Someproject</PackageId>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Someproject.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>
</Project>
---
my Visual Studio 2017 v.15.6.4 compiles and runs just fine,
but NCrunch gives build error and reports:
Quote:C:\Program Files\dotnet\sdk\2.1.103\Sdks\Microsoft.NET.Sdk\build\Microsoft.PackageDependencyResolution.targets: Assets file 'C:\Users\Someuser\AppData\Local\NCrunch\7312\8\Someproject\obj\project.assets.json' doesn't have a target for '.NETFramework,Version=v4.6.1'. Ensure that restore has run and that you have included 'net461' in the TargetFrameworks for your project.
How can I resolve this? I'm using NCrunch 3.12.0.15
Regards, Richard