In my SnowShovel project I'm using an slnproj file to run my tests:
<Target Name="VSTest">
<ItemGroup>
<TestProjects Include="tests/**/*.csproj" />
</ItemGroup>
<MSBuild Projects="@(TestProjects)" Targets="VSTest" />
</Target>
Tests can then be executed with the dotnet cli:
dotnet test SnowShovel.slnproj
I feel like this should be in the box. I'm willing to create a pull request if you can assist me in how to test changes in the project.
In my SnowShovel project I'm using an slnproj file to run my tests:
Tests can then be executed with the dotnet cli:
I feel like this should be in the box. I'm willing to create a pull request if you can assist me in how to test changes in the project.