Right now we have csharp_nunit_test. There is some common infrastructure these days for test frameworks. dotnet vstest is how most people experience it, and I believe the underlying stuff is avaialble in the Microsoft.TestPlatform package.
Presumably we could build a generic csharp_test rule on top of this. csharp_nunit_test could become a light macro on top of that (adding a reference to nunit.framework) or go away. In either case we'd stop using the NUnitLite runner in favour of vstest.
Right now we have
csharp_nunit_test
. There is some common infrastructure these days for test frameworks. dotnet vstest is how most people experience it, and I believe the underlying stuff is avaialble in the Microsoft.TestPlatform package.Presumably we could build a generic
csharp_test
rule on top of this.csharp_nunit_test
could become a light macro on top of that (adding a reference to nunit.framework) or go away. In either case we'd stop using the NUnitLite runner in favour of vstest.