forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Threading.Tasks.Parallel.Tests.csproj
More file actions
32 lines (32 loc) · 1.56 KB
/
System.Threading.Tasks.Parallel.Tests.csproj
File metadata and controls
32 lines (32 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<TargetFrameworks>$(NetCoreAppCurrent)</TargetFrameworks>
<!-- ActiveIssue XUnit crashes on Apple Silicon
https://github.com/dotnet/runtime/issues/49110 -->
<IgnoreForCI Condition="'$(TargetOS)' == 'OSX' and '$(TargetArchitecture)' == 'arm64' ">true</IgnoreForCI>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Include="$(CommonTestPath)System\Diagnostics\Tracing\TestEventListener.cs" Link="Common\System\Diagnostics\Tracing\TestEventListener.cs" />
<Compile Include="BreakTests.cs" />
<Compile Include="EtwTests.cs" />
<Compile Include="ParallelFor.cs" />
<Compile Include="ParallelForBoundary.cs" />
<Compile Include="ParallelForeachPartitioner.cs" />
<Compile Include="ParallelForEachAsyncTests.cs" />
<Compile Include="ParallelForTest.cs" />
<Compile Include="ParallelForTests.cs" />
<Compile Include="ParallelInvokeTest.cs" />
<Compile Include="ParallelLoopResultTests.cs" />
<Compile Include="ParallelStateTest.cs" />
<Compile Include="RangePartitioner1Chunk.cs" />
<Compile Include="RangePartitionerTests.cs" />
<Compile Include="RangePartitionerThreadSafetyTests.cs" />
<Compile Include="RespectParentCancellationTest.cs" />
<Compile Include="XunitAssemblyAttributes.cs" />
<Compile Include="$(CommonTestPath)System\Threading\ThreadPoolHelpers.cs" Link="CommonTest\System\Threading\ThreadPoolHelpers.cs" />
</ItemGroup>
</Project>