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

TypeSystem.Tests.csproj « tests « ILCompiler.TypeSystem « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd4d34c182587b58767e02cbb78ab3bec9c5334b (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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <AssemblyName>TypeSystem.Tests</AssemblyName>
    <RootNamespace>TypeSystem.Tests</RootNamespace>
    <TargetFramework>netstandard2.0</TargetFramework>
    <!-- Don't warn if some dependencies were rolled forward -->
    <NoWarn>$(NoWarn);NU1603</NoWarn>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="xunit">
      <Version>$(XUnitPackageVersion)</Version>
    </PackageReference>
    <PackageReference Include="Microsoft.DotNet.XUnitExtensions">
      <Version>$(MicrosoftDotNetXUnitExtensionsVersion)</Version>
    </PackageReference>
    <PackageReference Include="System.Reflection.Metadata">
      <Version>1.4.2</Version>
    </PackageReference>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\src\ILCompiler.TypeSystem.csproj" />
    <!-- Make sure the test data gets built -->
    <ProjectReference Include="CoreTestAssembly\CoreTestAssembly.csproj">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      <Targets>Build;DebugSymbolsProjectOutputGroup</Targets>
    </ProjectReference>
    <ProjectReference Include="ILTestAssembly\ILTestAssembly.ilproj">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      <Targets>Build</Targets>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ArchitectureSpecificFieldLayoutTests.cs" />
    <Compile Include="CanonicalizationTests.cs" />
    <Compile Include="ConstraintsValidationTest.cs" />
    <Compile Include="GCPointerMapTests.cs" />
    <Compile Include="GenericTypeAndMethodTests.cs" />
    <Compile Include="CastingTests.cs" />
    <Compile Include="HashcodeTests.cs" />
    <Compile Include="ILDisassemblerTests.cs" />
    <Compile Include="InterfacesTests.cs" />
    <Compile Include="RuntimeDeterminedTypesTests.cs" />
    <Compile Include="SyntheticVirtualOverrideTests.cs" />
    <Compile Include="TestMetadataFieldLayoutAlgorithm.cs" />
    <Compile Include="TypeNameParsingTests.cs" />
    <Compile Include="UniversalGenericFieldLayoutTests.cs" />
    <Compile Include="ValueTypeShapeCharacteristicsTests.cs" />
    <Compile Include="VirtualFunctionOverrideTests.cs" />
    <Compile Include="InstanceFieldLayoutTests.cs" />
    <Compile Include="StaticFieldLayoutTests.cs" />
    <Compile Include="TestTypeSystemContext.cs" />
    <Compile Include="WellKnownTypeTests.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>