2017-06-07 13:16:24 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-04-10 11:41:01 +00:00
|
|
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{B6C09633-D161-499A-8FE1-46B2D53A16E7}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
2017-08-21 15:34:15 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Debug|AnyCPU'" />
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Release|AnyCPU'" />
|
2017-06-07 13:16:24 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Debug|AnyCPU'" />
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Release|AnyCPU'" />
|
2017-04-10 11:41:01 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="XunitAssemblyAttributes.cs" />
|
|
|
|
|
<Compile Include="UnwrapTests.cs" />
|
|
|
|
|
<Compile Include="AggregateExceptionTests.cs" />
|
|
|
|
|
<Compile Include="OperationCanceledExceptionTests.cs" />
|
|
|
|
|
<Compile Include="CancellationTokenTests.cs" />
|
|
|
|
|
<Compile Include="MethodCoverage.cs" />
|
|
|
|
|
<Compile Include="CESchedulerPairTests.cs" />
|
|
|
|
|
<!-- Task -->
|
|
|
|
|
<Compile Include="Task\RunContinuationsAsynchronouslyTests.cs" />
|
|
|
|
|
<Compile Include="Task\TPLTestException.cs" />
|
|
|
|
|
<Compile Include="Task\TaskRunSyncTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskStatusTest.cs" />
|
|
|
|
|
<Compile Include="Task\TaskPropertiesTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskCreateTest.cs" />
|
|
|
|
|
<Compile Include="Task\TaskWaitAllAnyTest.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWithTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWithAllAnyTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWith_ContFuncAndActionWithArgsTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWith_ContFuncAndActionTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWhenAnyTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskContinueWhenAllTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskFromAsyncWork.cs" />
|
|
|
|
|
<Compile Include="Task\TaskFromAsyncTest.cs" />
|
2017-08-21 15:34:15 +00:00
|
|
|
|
<Compile Include="Task\TaskFromAsyncTest2.cs" />
|
2017-04-10 11:41:01 +00:00
|
|
|
|
<Compile Include="Task\TaskCancelWaitTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskCancelWaitTest.cs" />
|
|
|
|
|
<Compile Include="Task\TaskRtTests.cs" />
|
|
|
|
|
<Compile Include="Task\TaskRtTests_Core.cs" />
|
|
|
|
|
<Compile Include="Task\TaskAPMTest.cs" />
|
|
|
|
|
<!-- TaskFactory -->
|
|
|
|
|
<Compile Include="TaskFactory\TaskFactory_FromAsyncTests.cs" />
|
|
|
|
|
<Compile Include="TaskFactory\TaskFactoryTests.cs" />
|
|
|
|
|
<!-- TaskScheduler -->
|
|
|
|
|
<Compile Include="TaskScheduler\TaskSchedulerTests.cs" />
|
|
|
|
|
<!-- System.Runtime.CompilerServices -->
|
|
|
|
|
<Compile Include="System.Runtime.CompilerServices\TaskAwaiterTests.cs" />
|
|
|
|
|
<Compile Include="System.Runtime.CompilerServices\YieldAwaitableTests.cs" />
|
|
|
|
|
<Compile Include="System.Runtime.CompilerServices\AsyncTaskMethodBuilderTests.cs" />
|
|
|
|
|
<Compile Include="$(CommonTestPath)\System\Threading\ThreadPoolHelpers.cs">
|
|
|
|
|
<Link>CommonTest\System\Threading\ThreadPoolHelpers.cs</Link>
|
|
|
|
|
</Compile>
|
2017-08-21 15:34:15 +00:00
|
|
|
|
<Compile Include="Task\TaskDisposeTests.cs" />
|
2017-04-10 11:41:01 +00:00
|
|
|
|
</ItemGroup>
|
2017-08-21 15:34:15 +00:00
|
|
|
|
<ItemGroup Condition="'$(TargetGroup)' == 'netcoreapp'">
|
2018-01-24 17:04:36 +00:00
|
|
|
|
<Compile Include="CancellationTokenTests.netcoreapp.cs" />
|
2017-08-21 15:34:15 +00:00
|
|
|
|
<Compile Include="Task\TaskStatusTest.netcoreapp.cs" />
|
2017-04-10 11:41:01 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
|
2018-01-29 19:03:06 +00:00
|
|
|
|
</Project>
|