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

CoreTestAssembly.csproj « CoreTestAssembly « tests « ILCompiler.TypeSystem « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74380612afa04d0fbb76c5129f8d3a859ef8ae8b (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
<?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>CoreTestAssembly</AssemblyName>
    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
    <IsCoreAssembly>true</IsCoreAssembly>
    <!--
      Need to avoid target platform being empty because that would drag in an mscorlib design-time
      facade into the references and break us.
    -->
    <TargetPlatformIdentifier>Portable</TargetPlatformIdentifier>
    <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
    <TargetFrameworkMonikerDisplayName>.NET Portable Subset</TargetFrameworkMonikerDisplayName>
    <ImplicitlyExpandTargetFramework>false</ImplicitlyExpandTargetFramework>
    <ProjectGuid>{5813B7DC-6588-4553-B04D-387EC9630AC8}</ProjectGuid>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="Canonicalization.cs" />
    <Compile Include="Casting.cs" />
    <Compile Include="GCPointerMap.cs" />
    <Compile Include="GenericConstraints.cs" />
    <Compile Include="Hashcode.cs" />
    <Compile Include="InterfaceArrangements.cs" />
    <Compile Include="GenericTypes.cs" />
    <Compile Include="Platform.cs" />
    <Compile Include="InstanceFieldLayout.cs" />
    <Compile Include="StaticFieldLayout.cs" />
    <Compile Include="SyntheticVirtualOverride.cs" />
    <Compile Include="TypeNameParsing.cs" />
    <Compile Include="ValueTypeShapeCharacteristics.cs" />
    <Compile Include="VirtualFunctionOverride.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>