forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Collections.NonGeneric.Tests.csproj
More file actions
44 lines (44 loc) · 2.6 KB
/
System.Collections.NonGeneric.Tests.csproj
File metadata and controls
44 lines (44 loc) · 2.6 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
<TargetFrameworks>$(NetCoreAppCurrent)</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<!-- Common Collections tests -->
<Compile Include="$(CommonTestPath)System\Collections\ICollection.NonGeneric.Tests.cs"
Link="Common\System\Collections\ICollection.NonGeneric.Tests.cs" />
<Compile Include="$(CommonTestPath)System\Collections\IDictionary.NonGeneric.Tests.cs"
Link="Common\System\Collections\IDictionary.NonGeneric.Tests.cs" />
<Compile Include="$(CommonTestPath)System\Collections\IEnumerable.NonGeneric.Tests.cs"
Link="Common\System\Collections\IEnumerable.NonGeneric.Tests.cs" />
<Compile Include="$(CommonTestPath)System\Collections\IList.NonGeneric.Tests.cs"
Link="Common\System\Collections\IList.NonGeneric.Tests.cs" />
<Compile Include="$(CommonTestPath)System\Collections\TestBase.NonGeneric.cs"
Link="Common\System\Collections\TestBase.NonGeneric.cs" />
<Compile Include="$(CommonTestPath)System\Collections\TestingTypes.cs"
Link="Common\System\Collections\TestingTypes.cs" />
<Compile Include="$(CommonTestPath)System\Runtime\Serialization\Formatters\BinaryFormatterHelpers.cs"
Link="Common\System\Runtime\Serialization\Formatters\BinaryFormatterHelpers.cs" />
<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="CaseInsensitiveComparerTests.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" />
<Compile Include="CaseInsensitiveHashCodeProviderTests.cs" />
<Compile Include="$(CommonTestPath)System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs"
Link="Common\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs" />
</ItemGroup>
</Project>