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

Mono.Linker.csproj « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd547ca51f7e98698f92d87b0568b2b2d7299ef3 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
  <!--
      TODO: Remove this workaround once supported.

      The configuration isn't correctly set when the linker is
      restored as a P2P reference due to a nuget bug
      (https://github.com/NuGet/Home/issues/4873). As a workaround, we
      check NuGetRestoreTargets, which is set by the .NET Core restore
      targets.
  -->
  <PropertyGroup>
    <ILLinkBuild Condition=" $(Configuration.StartsWith('illink')) Or '$(NuGetRestoreTargets)' != '' ">true</ILLinkBuild>
    <ILLinkBuild Condition=" '$(ILLinkBuild)' == '' ">false</ILLinkBuild>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <Import Project="ILLink.props" Condition=" $(ILLinkBuild) " />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{DD28E2B1-057B-4B4D-A04D-B2EBD9E76E46}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Mono</RootNamespace>
    <AssemblyName Condition=" ! $(ILLinkBuild) ">monolinker</AssemblyName>
    <AssemblyName Condition=" $(ILLinkBuild) ">illink</AssemblyName>
    <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>True</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>False</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>True</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" Condition=" ! $(ILLinkBuild) " />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <ItemGroup Condition=" ! $(ILLinkBuild) ">
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Linker.Steps\BaseStep.cs" />
    <Compile Include="Linker.Steps\BlacklistStep.cs" />
    <Compile Include="Linker.Steps\CleanStep.cs" />
    <Compile Include="Linker.Steps\RegenerateGuidStep.cs" />
    <Compile Include="Linker.Steps\LoadI18nAssemblies.cs" />
    <Compile Include="Linker.Steps\RemoveSecurityStep.cs" />
    <Compile Include="Linker\IXApiVisitor.cs" />
    <Compile Include="Linker\I18nAssemblies.cs" />
    <Compile Include="Linker.Steps\IStep.cs" />
    <Compile Include="Linker.Steps\LoadReferencesStep.cs" />
    <Compile Include="Linker.Steps\MarkStep.cs" />
    <Compile Include="Linker.Steps\OutputStep.cs" />
    <Compile Include="Linker.Steps\ResolveFromXApiStep.cs" />
    <Compile Include="Linker.Steps\ResolveFromAssemblyStep.cs" />
    <Compile Include="Linker.Steps\ResolveFromXmlStep.cs" />
    <Compile Include="Linker.Steps\ResolveStep.cs" />
    <Compile Include="Linker.Steps\SweepStep.cs" />
    <Compile Include="Linker.Steps\AddBypassNGenStep.cs" />
    <Compile Include="Linker\Annotations.cs" />
    <Compile Include="Linker\AssemblyAction.cs" />
    <Compile Include="Linker\AssemblyInfo.cs" />
    <Compile Include="Linker\AssemblyResolver.cs" />
    <Compile Include="Linker\AssemblyUtilities.cs" />
    <Compile Include="Linker\DirectoryAssemblyResolver.cs" />
    <Compile Include="Linker\Driver.cs" />
    <Compile Include="Linker\LinkContext.cs" />
    <Compile Include="Linker\LoadException.cs" />
    <Compile Include="Linker\MarkException.cs" />
    <Compile Include="Linker\MarkingHelpers.cs" />
    <Compile Include="Linker\MethodAction.cs" />
    <Compile Include="Linker\MethodReferenceExtensions.cs" />
    <Compile Include="Linker\Pipeline.cs" />
    <Compile Include="Linker\TypePreserve.cs" />
    <Compile Include="Linker\TypeReferenceExtensions.cs" />
    <Compile Include="Linker\TypeNameParser.cs" />
    <Compile Include="Linker\XApiReader.cs" />
    <Compile Include="Linker.Steps\TypeMapStep.cs" />
    <Compile Include="Linker\ILogger.cs" />
    <Compile Include="Linker\ConsoleLogger.cs" />
    <Compile Include="Linker\Tracer.cs" />
    <Compile Include="Linker.Steps\PreserveDependencyLookupStep.cs" />
    <Compile Include="Linker.Steps\PreserveCalendarsStep.cs" />
    <Compile Include="Linker.Steps\RemoveFeaturesStep.cs" />
    <Compile Include="Linker.Steps\CodeRewriterStep.cs" />
    <Compile Include="Linker\KnownMembers.cs" />
    <Compile Include="Linker\BCL.cs" />
    <Compile Include="Linker\MethodDefinitionExtensions.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="app.config" />
    <None Include="README" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\cecil\Mono.Cecil.csproj">
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Debug' ">Configuration=netstandard_Debug</SetConfiguration>
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Debug' And '$(TargetFramework)' == 'net46' ">Configuration=net_4_0_Debug</SetConfiguration>
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Release' ">Configuration=netstandard_Release</SetConfiguration>
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Release' And '$(TargetFramework)' == 'net46' ">Configuration=net_4_0_Release</SetConfiguration>
      <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
      <Name>Mono.Cecil</Name>
    </ProjectReference>
    <ProjectReference Include="..\cecil\symbols\mdb\Mono.Cecil.Mdb.csproj">
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Debug' ">Configuration=netstandard_Debug</SetConfiguration>
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Release' ">Configuration=netstandard_Release</SetConfiguration>
      <Project>{8559dd7f-a16f-46d0-a05a-9139faeba8fd}</Project>
      <Name>Mono.Cecil.Mdb</Name>
    </ProjectReference>
    <ProjectReference Include="..\cecil\symbols\pdb\Mono.Cecil.Pdb.csproj">
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Debug' ">Configuration=netstandard_Debug</SetConfiguration>
      <SetConfiguration Condition=" '$(Configuration)' == 'illink_Release' ">Configuration=netstandard_Release</SetConfiguration>
      <Project>{63E6915C-7EA4-4D76-AB28-0D7191EEA626}</Project>
      <Name>Mono.Cecil.Pdb</Name>
    </ProjectReference>
  </ItemGroup>
</Project>