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

System.Reflection.Primitives.csproj « src « System.Reflection.Primitives « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfca2b7dfd88a1ffeceb9c5905c0e8375a88388f (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
<?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>
    <AssemblyName>System.Reflection.Primitives</AssemblyName>
    <IsPartialFacadeAssembly Condition="'$(TargetGroup)'!='netcore50'">true</IsPartialFacadeAssembly>
    <NuGetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.3</NuGetTargetMoniker>
  </PropertyGroup>
  <!-- Help VS understand available configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcore50_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcore50_Release|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net46_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net46_Release|AnyCPU'" />
  <ItemGroup Condition="'$(TargetGroup)'!='netcore50' and '$(TargetGroup)' != 'uap101aot'">
    <TargetingPackReference Include="mscorlib" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='netcore50'">
    <Compile Include="System\Reflection\CallingConventions.cs" />
    <Compile Include="System\Reflection\EventAttributes.cs" />
    <Compile Include="System\Reflection\FieldAttributes.cs" />
    <Compile Include="System\Reflection\GenericParameterAttributes.cs" />
    <Compile Include="System\Reflection\MethodAttributes.cs" />
    <Compile Include="System\Reflection\MethodImplAttributes.cs" />
    <Compile Include="System\Reflection\ParameterAttributes.cs" />
    <Compile Include="System\Reflection\PropertyAttributes.cs" />
    <Compile Include="System\Reflection\TypeAttributes.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='netcore50' or '$(TargetGroup)'=='uap101aot'">
    <Compile Include="System\Reflection\Emit\FlowControl.cs" />
    <Compile Include="System\Reflection\Emit\Opcode.cs" />
    <Compile Include="System\Reflection\Emit\OpCodes.cs" />
    <Compile Include="System\Reflection\Emit\OpcodeType.cs" />
    <Compile Include="System\Reflection\Emit\OperandType.cs" />
    <Compile Include="System\Reflection\Emit\PackingSize.cs" />
    <Compile Include="System\Reflection\Emit\StackBehaviour.cs" />
  </ItemGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='uap101aot'">
    <TargetingPackReference Include="System.Private.CoreLib" />
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>