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

System.Collections.NonGeneric.Tests.csproj « tests « System.Collections.NonGeneric « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 592fdf81971c0891e27773d7c4daa341d48a0249 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.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>
    <RootNamespace>System.Collections.NonGeneric.Tests</RootNamespace>
    <AssemblyName>System.Collections.NonGeneric.Tests</AssemblyName>
    <ProjectGuid>{EE95AE39-845A-42D3-86D0-8065DBE56612}</ProjectGuid>
    <DefineConstants Condition="'$(TargetGroup)'==''">$(DefineConstants);netstandard17</DefineConstants>
    <NugetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.7</NugetTargetMoniker>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  </PropertyGroup>
  <ItemGroup>
    <!-- Common Collections tests -->
    <Compile Include="$(CommonTestPath)\System\Collections\ICollection.NonGeneric.Tests.cs">
      <Link>Common\System\Collections\ICollection.NonGeneric.Tests.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Collections\IDictionary.NonGeneric.Tests.cs">
      <Link>Common\System\Collections\IDictionary.NonGeneric.Tests.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Collections\IEnumerable.NonGeneric.Tests.cs">
      <Link>Common\System\Collections\IEnumerable.NonGeneric.Tests.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Collections\IList.NonGeneric.Tests.cs">
      <Link>Common\System\Collections\IList.NonGeneric.Tests.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Collections\TestBase.NonGeneric.cs">
      <Link>Common\System\Collections\TestBase.NonGeneric.cs</Link>
    </Compile>
    <Compile Include="$(CommonTestPath)\System\Collections\TestingTypes.cs">
      <Link>Common\System\Collections\TestingTypes.cs</Link>
    </Compile>
    <Compile Include="ArrayListTests.cs" />
    <Compile Include="ArrayList\ArrayList.IList.Tests.cs" />
    <Compile Include="Hashtable\Hashtable.Values.Tests.cs" />
    <Compile Include="Hashtable\Hashtable.Keys.Tests.cs" />
    <Compile Include="Hashtable\Hashtable.IDictionary.Tests.cs" />
    <Compile Include="Helpers.cs" />
    <Compile Include="CaseInsentiveComparerTests.cs" />
    <Compile Include="CollectionBaseTests.cs" />
    <Compile Include="CollectionsUtilTests.cs" />
    <Compile Include="ComparerTests.cs" />
    <Compile Include="DictionaryBaseTests.cs" />
    <Compile Include="HashtableTests.cs" />
    <Compile Include="QueueTests.cs" />
    <Compile Include="ReadOnlyCollectionBaseTests.cs" />
    <Compile Include="SortedListTests.cs" />
    <Compile Include="StackTests.cs" />
    <Compile Include="$(CommonTestPath)\System\Diagnostics\DebuggerAttributes.cs">
      <Link>Common\System\Diagnostics\DebuggerAttributes.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'!=''">
    <Compile Include="$(CommonPath)\System\SerializableAttribute.cs">
      <Link>Common\System\SerializableAttribute.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'==''">
    <Compile Include="CaseInsensitiveHashCodeProviderTests.cs" />
    <Compile Include="$(CommonTestPath)\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs">
      <Link>Common\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs</Link>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\pkg\System.Collections.NonGeneric.pkgproj">
      <Name>System.Collections.NonGeneric</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>