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

System.Private.Reflection.Metadata.Tests.csproj « tests « System.Private.Reflection.Metadata « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08994fa92a9702453f1c5cb19670d693cbc1da87 (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
<?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>
    <OutputType>Library</OutputType>
    <AssemblyName>System.Private.Reflection.Metadata.Tests</AssemblyName>
    <RootNamespace>System.Private.Reflection.Metadata.Tests</RootNamespace>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <TargetFramework>netstandard2.0</TargetFramework>
  </PropertyGroup>
  <PropertyGroup>
    <NativeFormatCommonPath>..\..\Common\src\Internal\NativeFormat</NativeFormatCommonPath>
    <MetadataCommonPath>..\..\Common\src\Internal\Metadata\NativeFormat</MetadataCommonPath>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="$(NativeFormatCommonPath)\NativeFormat.cs" />
    <Compile Include="$(NativeFormatCommonPath)\NativeFormatReader.cs" />
    <Compile Include="$(NativeFormatCommonPath)\NativeFormatReader.Primitives.cs" />
    <Compile Include="$(NativeFormatCommonPath)\NativeFormatReader.String.cs" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="$(MetadataCommonPath)\NativeFormatReaderCommonGen.cs" />
    <Compile Include="$(MetadataCommonPath)\MdBinaryReader.cs" />
    <Compile Include="$(MetadataCommonPath)\MdBinaryReaderGen.cs" />
    <Compile Include="$(MetadataCommonPath)\NativeMetadataReader.cs" />
    <Compile Include="$(MetadataCommonPath)\NativeFormatReaderGen.cs" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="xunit">
      <Version>$(XUnitPackageVersion)</Version>
    </PackageReference>
    <PackageReference Include="Microsoft.DotNet.XUnitExtensions">
      <Version>$(MicrosoftDotNetXUnitExtensionsVersion)</Version>
    </PackageReference>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\ILCompiler.MetadataWriter\src\ILCompiler.MetadataWriter.csproj">
      <Aliases>writer</Aliases>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\..\Common\src\Internal\Metadata\NativeFormat\MetadataTypeHashingAlgorithms.cs">
      <Link>MetadataTypeHashingAlgorithms.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\System\FormattingHelpers.cs">
      <Link>FormattingHelpers.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\TypeSystem\Common\TypeHashingAlgorithms.cs">
      <Link>TypeHashingAlgorithms.cs</Link>
    </Compile>
    <Compile Include="CollectionExtensions.cs" />
    <Compile Include="HashCodeTests.cs" />
    <Compile Include="RoundTripTests.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>