Forum member

WinMan

5 posts

Posts by WinMan

  1. Can't run on .NETCoreApp 3.0

    Solved. Not 100% sure what it was. My colleague changed the project so that we can build it on Linux and now it works.

  2. Can't run on .NETCoreApp 3.0

    Nope nothing in the event viewer. I have no trouble to run DotCover. No more hints where to look? We have a large project.

  3. Can't run on .NETCoreApp 3.0

    I'm running 3.31.0.3 Bug report submitted!

  4. Can't run on .NETCoreApp 3.0

    I got a new license for NCrunch but It doesn't start. The only thing I get is An error occurred while analysing this project after it was built: NCrunch encountered an unexpected error occurred while building an environment to analyse an assembly: nCrunch.TaskRunner.Ipc.IpcConnectionClosedException…

  5. TestFixtureSetUp not running for nested class, bug?

    We have this setup: [code=csharp] [TestFixture] public class ATest { [TestFixtureSetUp] public void ParentFixtureSetup() { // Some setup } [TestFixture] public class NestedClass { [Test] public void SomeTest() { //Fails since the set…