Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Threading.Tests.csproj « tests « System.Threading « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d572bf66988cf34c2683d7dee5ae3dbd5f6d660 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <OutputType>Library</OutputType>
    <AssemblyName>System.Threading.Tests</AssemblyName>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
  <ItemGroup>
    <Compile Include="AsyncLocalTests.cs" />
    <Compile Include="BarrierCancellationTests.cs" />
    <Compile Include="BarrierTests.cs" />
    <Compile Include="CountdownEventCancellationTests.cs" />
    <Compile Include="CountdownEventTests.cs" />
    <Compile Include="ManualResetEventSlimCancellationTests.cs" />
    <Compile Include="ManualResetEventSlimTests.cs" />
    <Compile Include="SemaphoreSlimCancellationTests.cs" />
    <Compile Include="SemaphoreSlimTests.cs" />
    <Compile Include="SpinLockTests.cs" />
    <Compile Include="ThreadLocalTests.cs" />
    <Compile Include="XunitAssemblyAttributes.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <ItemGroup>
    <!-- Compile tests against the System.Runtime contract, but copy our local-built implementation for testing -->
    <ProjectReference Include="..\src\System.Threading.CoreCLR.csproj">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      <Targets>Build;DebugSymbolsProjectOutputGroup</Targets>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>