Forum member

baokr

3 posts

Posts by baokr

  1. Self-closing project tag causes build failure

    If common project properties are defined using a Directory.build.props file, a project file may end up being empty with just a self-closing 'Project' tag remaining like so: [code=xml]<Project Sdk="Microsoft.NET.Sdk" /> [/code] It appears that NCrunch is unable to handle this case thus failing…

  2. MSTest test assemblies using DynamicDataAttribute cannot be built/analyzed

    Hi, Thanks for the quick response. I'm looking forward to the fix! Best regards

  3. MSTest test assemblies using DynamicDataAttribute cannot be built/analyzed

    We use MSTest for our unit tests and are unable to use NCrunch with some test assemblies, which use the DynamicDataAttribute to generate multiple test cases like this: [code=csharp] [TestClass] public class ExampleTests { public static IEnumerable<object[]> MyTestData { get …