2016-07-15 07:20:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="SetupTestProjectData"
|
2017-01-22 22:40:00 +00:00
|
|
|
DependsOnTargets="SetupBuildTestProjectInputs">
|
2016-07-15 07:20:23 +00:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
<Target Name="SetupBuildTestProjectInputs">
|
|
|
|
<ItemGroup>
|
|
|
|
<PreTestProjectsToExclude Condition=" 'Non-test projects in test directory' != 'consider moving elsewhere' "
|
2017-10-12 00:17:28 +00:00
|
|
|
Include="test/Microsoft.DotNet.Tools.Tests.Utilities/Microsoft.DotNet.Tools.Tests.Utilities.csproj;
|
|
|
|
test/Microsoft.DotNet.TestFramework/Microsoft.DotNet.TestFramework.csproj" />
|
2016-07-15 07:20:23 +00:00
|
|
|
|
2016-11-12 07:46:29 +00:00
|
|
|
<TestProjectsToExclude Include="%(PreTestProjectsToExclude.Fullpath)" />
|
2016-07-15 07:20:23 +00:00
|
|
|
|
2017-02-17 20:28:25 +00:00
|
|
|
<PreTestProjects Include="test/*/*.csproj;" />
|
2016-07-15 07:20:23 +00:00
|
|
|
|
2016-11-12 07:46:29 +00:00
|
|
|
<TestProjects Include="%(PreTestProjects.Fullpath)"
|
2016-07-15 07:20:23 +00:00
|
|
|
Exclude="@(TestProjectsToExclude)" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Target>
|
2017-01-22 22:40:00 +00:00
|
|
|
</Project>
|