You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
432 B
XML
12 lines
432 B
XML
<Project>
|
|
|
|
<Target Name="_FilterTestProjects" BeforeTargets="TestProjects">
|
|
<ItemGroup Condition="'$(TestFilter)' != ''">
|
|
<ProjectsToTest Remove="@(ProjectsToTest)"/>
|
|
<ProjectsToTest Include="$(RepositoryRoot)test\*$(TestFilter)*\*.csproj" Exclude="@(ExcludeFromTest)" />
|
|
</ItemGroup>
|
|
|
|
<Error Text="Could not find test projects to run" Condition="@(ProjectsToTest->Count()) == 0" />
|
|
</Target>
|
|
</Project>
|