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>
|
2016-11-12 07:46:29 +00:00
|
|
|
<!--
|
2016-07-15 07:20:23 +00:00
|
|
|
<PreTestProjectsToExclude Condition=" '$(IsDesktopAvailable)' != 'True' "
|
2016-11-12 07:46:29 +00:00
|
|
|
Include="test/binding-redirects.Tests/binding-redirects.Tests.csproj;" />
|
|
|
|
-->
|
|
|
|
<PreTestProjectsToExclude Include="test$(PathSeparator)binding-redirects.Tests$(PathSeparator)binding-redirects.Tests.csproj;" />
|
2016-07-15 07:20:23 +00:00
|
|
|
|
|
|
|
<PreTestProjectsToExclude Condition=" 'Non-test projects in test directory' != 'consider moving elsewhere' "
|
2016-11-12 07:46:29 +00:00
|
|
|
Include="test$(PathSeparator)ArgumentsReflector$(PathSeparator)ArgumentsReflector.csproj;
|
|
|
|
test$(PathSeparator)Microsoft.DotNet.Tools.Tests.Utilities$(PathSeparator)Microsoft.DotNet.Tools.Tests.Utilities.csproj;
|
2017-01-22 22:40:00 +00:00
|
|
|
test$(PathSeparator)Msbuild.Tests.Utilities$(PathSeparator)Msbuild.Tests.Utilities.csproj;
|
|
|
|
test$(PathSeparator)Performance$(PathSeparator)Performance.csproj" />
|
2016-07-15 07:20:23 +00:00
|
|
|
|
|
|
|
<PreTestProjectsToExclude Condition=" 'Executed after primary test phase.' != ' Consider moving.' "
|
2016-11-12 07:46:29 +00:00
|
|
|
Include="test$(PathSeparator)Installer$(PathSeparator)Microsoft.DotNet.Cli.Msi.Tests$(PathSeparator)Microsoft.DotNet.Cli.Msi.Tests.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-01-22 22:40:00 +00:00
|
|
|
<PreTestProjects Include="test$(PathSeparator)*$(PathSeparator)*.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>
|