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

System.Runtime.csproj « src « System.Runtime « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6cea84ca4705b3bf2dbe18a1e058ef6899d1ff4 (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
<?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>
    <ProjectGuid>{56B9D0A9-44D3-488E-8B42-C14A6E30CAB2}</ProjectGuid>
    <AssemblyName>System.Runtime</AssemblyName>
    <AssemblyVersion>4.2.0.0</AssemblyVersion>
    <AssemblyVersion Condition="'$(TargetGroup)'=='net462' OR '$(TargetGroup)'=='netstandard1.5'">4.1.1.0</AssemblyVersion>
    <ContractProject Condition="'$(AssemblyVersion)'=='4.1.1.0'">../ref/4.1.0/System.Runtime.depproj</ContractProject>
    <IsPartialFacadeAssembly>true</IsPartialFacadeAssembly>
    <PackageTargetFramework Condition="'$(PackageTargetFramework)'==''">netstandard1.7</PackageTargetFramework>
    <NuGetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.7</NuGetTargetMoniker>
    <!-- 436 is thrown because some types conflict with existing types in mscorlib -->
    <NoWarn>0436</NoWarn>
  </PropertyGroup>
  <!-- Default configurations to help VS understand the configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard1.5_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard1.5_Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcore50aot_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcore50aot_Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net462_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net462_Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Release|AnyCPU'" />
  <ItemGroup>
    <Compile Include="System.Runtime.Forwards.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' != 'net462' AND '$(TargetGroup)' != 'net463'">
    <Compile Include="System\Action.cs" />
    <Compile Include="System\Function.cs" />
    <Compile Include="System\LazyOfTTMetadata.cs" />
    <Compile Include="System\Collections\Generic\ISet.cs" />
    <Compile Include="System\ComponentModel\EditorBrowsableAttribute.cs" />
    <Compile Include="System\Runtime\CompilerServices\StrongBox.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'!='netcore50aot' And ('$(TargetGroup)'!='net462' AND '$(TargetGroup)'!='net463')">
    <Compile Include="System\ComponentModel\DefaultValueAttribute.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' != 'net462' And '$(TargetGroup)' != 'net463'">
    <ProjectReference Include="..\..\System.Private.Uri\src\System.Private.Uri.csproj">
      <OSGroup>Windows_NT</OSGroup>
      <UndefineProperties>%(ProjectReference.UndefineProperties);TargetGroup</UndefineProperties>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'!='netcore50aot'">
    <TargetingPackReference Include="mscorlib" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='netcore50aot'">
    <TargetingPackReference Include="System.Private.CoreLib" />
    <TargetingPackReference Include="System.Private.Reflection" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)' == 'net462' OR '$(TargetGroup)' == 'net463'">
    <TargetingPackReference Include="System" />
    <TargetingPackReference Include="System.Core" />
    <TargetingPackReference Include="System.ComponentModel.Composition" />
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>