I am using VS 2017 with the new csproj in the .NET Standard class library, trying to test the library using the .NET Core 1.1 test project using the MSTest testing environment using the dotnet test command. Work at the local level works great; when I submit the assembly to continuous integration, I get an error:
No test discoverer is registered to perform discovery of test cases.
How do I get a registered detector and my tests in VSTS?
source share