Forum member

EsbjornRedmo

3 posts

Posts by EsbjornRedmo

  1. NCrunch 4 - Optimized mode - Debugging tests is mission impossible?

    Yes - fixes the issue. Thank you!

  2. NCrunch 4 - Optimized mode - Debugging tests is mission impossible?

    I had the same issue and found that the combination of 1. old style csproj file & .net framework, 2. ncrunch optimised mode and 3. async unit test (doesn't matter whether nunit or xunit) reliably reproduces in on VS2019 with the new 4.2.2 update. Had the same issue with .net core before but that see…

  3. Unable to run tests with .NET Core 2.0 referencing .NET Standard 2.0

    Found a partial workaround: as long as the assembly with the actual tests target .net framework (net461 in my case), and the csproj file contains a <DependsOnNETStandard>true</DependsOnNETStandard> tag, I could get it to run code from a NetStardard2.0 project.