dotnet test doesn't recursively search folders for .csproj with wildcards
15:55 17 Feb 2020

I want to run all tests in several dotnet core C# test projects.

From the root folder if I run dotnet test **/*.test.csproj it will only run the tests one folder down. From the root folder if I run dotnet test **/**/*.test.csproj it will only run the tests two folders down.

How can I get 'dotnet test' to recursively check all folders for a *.test.csproj project? i.e. run test from both projects above.

.net testing automated-tests xunit csproj