Hi,
I'm using NCrunch 5.1 with Rider.
I have a test project that contains subdirectories to organise the tests. When I create a new class in a subdirectory via right-clicking the project in the solution tree node, everything is fine. However, if I create my new class in an existing class and then ask Rider to move the new class to its own file, NCrunch does not detect that the new file exists. If I reference the new class, I get a build error in NCrunch.
1: Add a class "A" to an existing file that is inside a subdirectory:
[TestFixture]
public class Test
{
[Test]
public void TestA()
{
}
}
public class A
{
}
2: Ask Rider to move A to a new file.
3: Reference A in Test causes a build error in NCrunch:
Project\Test.cs (11, 17): The type or namespace name 'A' could not be found (are you missing a using directive or an assembly reference?)