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

ILCompiler.CppCodeGen.csproj « src « ILCompiler.CppCodeGen « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80a2a51f20d0adff239be2d92a48ca089d716573 (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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" Condition="'$(IsProjectNLibrary)' != 'true'" />
  <PropertyGroup>
    <OutputType>Library</OutputType>
    <RootNamespace>ILCompiler</RootNamespace>
    <AssemblyName>ILCompiler.CppCodeGen</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <TargetFramework>netstandard1.3</TargetFramework>
  </PropertyGroup>
  <ItemGroup Condition="'$(IsProjectNLibrary)' != 'true'">
    <ProjectReference Include="..\..\ILCompiler.DependencyAnalysisFramework\src\ILCompiler.DependencyAnalysisFramework.csproj" />
    <ProjectReference Include="..\..\ILCompiler.MetadataTransform\src\ILCompiler.MetadataTransform.csproj" />
    <ProjectReference Include="..\..\ILCompiler.MetadataWriter\src\ILCompiler.MetadataWriter.csproj" />
    <ProjectReference Include="..\..\ILCompiler.TypeSystem\src\ILCompiler.TypeSystem.csproj" />
    <ProjectReference Include="..\..\ILCompiler.Compiler\src\ILCompiler.Compiler.csproj" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\..\Common\src\TypeSystem\IL\ILImporter.cs">
      <Link>IL\ILImporter.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\System\Collections\Generic\ArrayBuilder.cs">
      <Link>Common\ArrayBuilder.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\System\FormattingHelpers.cs">
      <Link>Common\FormattingHelpers.cs</Link>
    </Compile>
    <Compile Include="..\..\Common\src\TypeSystem\IL\HelperExtensions.cs">
      <Link>IL\HelperExtensions.cs</Link>
    </Compile>
    <Compile Include="Compiler\DependencyAnalysis\CppCodegenNodeFactory.cs" />
    <Compile Include="Compiler\DependencyAnalysis\CppMethodCodeNode.cs" />
    <Compile Include="Compiler\CppNodeMangler.cs" />
    <Compile Include="Compiler\CppCodegenCompilation.cs" />
    <Compile Include="Compiler\CppCodegenCompilationBuilder.cs" />
    <Compile Include="Compiler\DependencyAnalysis\CppUnboxingStubNode.cs" />
    <Compile Include="CppCodeGen\DependencyNodeIterator.cs" />
    <Compile Include="CppCodeGen\EvaluationStack.cs" />
    <Compile Include="CppCodeGen\CppGenerationBuffer.cs" />
    <Compile Include="CppCodeGen\CppWriter.cs" />
    <Compile Include="CppCodeGen\NodeDataSection.cs" />
    <Compile Include="CppCodeGen\ILToCppImporter.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" Condition="'$(IsProjectNLibrary)' != 'true'" />
</Project>