forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSystem.Threading.Tests.csproj
More file actions
46 lines (46 loc) · 2.16 KB
/
System.Threading.Tests.csproj
File metadata and controls
46 lines (46 loc) · 2.16 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TestRuntime>true</TestRuntime>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<TargetFramework>$(NetCoreAppCurrent)</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetOS)' == 'browser'">
<_WasmPThreadPoolUnusedSize>10</_WasmPThreadPoolUnusedSize>
</PropertyGroup>
<ItemGroup>
<Compile Include="AsyncLocalTests.cs" />
<Compile Include="AutoResetEventTests.cs" />
<Compile Include="BarrierCancellationTests.cs" />
<Compile Include="BarrierTests.cs" />
<Compile Include="CountdownEventCancellationTests.cs" />
<Compile Include="CountdownEventTests.cs" />
<Compile Include="EtwTests.cs" />
<Compile Include="EventWaitHandleTests.cs" />
<Compile Include="HostExecutionContextTests.cs" />
<Compile Include="HostExecutionContextManagerTests.cs" />
<Compile Include="InterlockedTests.cs" />
<Compile Include="LockTests.cs" />
<Compile Include="ManualResetEventTests.cs" />
<Compile Include="ManualResetEventSlimCancellationTests.cs" />
<Compile Include="ManualResetEventSlimTests.cs" />
<Compile Include="MonitorTests.cs" />
<Compile Include="MutexTests.cs" />
<Compile Include="SemaphoreSlimCancellationTests.cs" />
<Compile Include="SemaphoreSlimTests.cs" />
<Compile Include="SemaphoreTests.cs" />
<Compile Include="SpinLockTests.cs" />
<Compile Include="ReaderWriterLockTests.cs" />
<Compile Include="ReaderWriterLockSlimTests.cs" />
<Compile Include="SpinWaitTests.cs" />
<Compile Include="ThreadLocalTests.cs" />
<Compile Include="VolatileTests.cs" />
<Compile Include="XunitAssemblyAttributes.cs" />
<Compile Include="ExecutionContextTests.cs" />
<Compile Include="SynchronizationContextTests.cs" />
<Compile Include="$(CommonTestPath)System\Diagnostics\Tracing\TestEventListener.cs"
Link="CommonTest\System\Diagnostics\Tracing\TestEventListener.cs" />
<Compile Include="$(CommonTestPath)System\Threading\ThreadTestHelpers.cs"
Link="CommonTest\System\Threading\ThreadTestHelpers.cs" />
</ItemGroup>
</Project>