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

System.Private.Interpreter.csproj « src « System.Private.Interpreter « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3808516a43297308e7d4dba39e118a29da8fbb4a (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
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <AssemblyName>System.Private.Interpreter</AssemblyName>
    <AssemblyVersion>4.0.0.0</AssemblyVersion>
    <OutputType>Library</OutputType>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
  <ItemGroup Condition="'$(IsProjectNLibrary)' != 'true'">
    <ProjectReference Include="..\..\AotPackageReference\AotPackageReference.depproj">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
    </ProjectReference>
    <ReferencePath Include="$(AotPackageReferencePath)\System.Runtime.dll" />
    <ReferencePath Include="$(AotPackageReferencePath)\System.Runtime.Extensions.dll" />
    <ReferencePath Include="$(AotPackageReferencePath)\System.Private.Reflection.Metadata.Ecma335.dll" />
    <ProjectReference Include="..\..\System.Private.CoreLib\src\System.Private.CoreLib.csproj" />
    <ProjectReference Include="..\..\System.Private.Reflection.Metadata\src\System.Private.Reflection.Metadata.csproj" />
    <ProjectReference Include="..\..\System.Private.TypeLoader\src\System.Private.TypeLoader.Experimental.csproj" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\..\Common\src\TypeSystem\IL\EcmaMethodIL.cs" />
    <Compile Include="..\..\Common\src\TypeSystem\IL\ILImporter.cs" />
    <Compile Include="..\..\Common\src\System\Collections\Generic\LowLevelStack.cs" />
    <Compile Include="Internal\Runtime\CompilerHelpers\LibraryInitializer.cs" />
    <Compile Include="Internal\Runtime\Interpreter\StackItem.cs" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Internal\Runtime\Interpreter\ILImporter.Interpreter.cs" />
    <Compile Include="Internal\Runtime\Interpreter\ILInterpreter.cs" />
    <Compile Include="Internal\Runtime\Interpreter\InterpreterCallInterceptor.cs" />
    <Compile Include="Internal\Runtime\Interpreter\InterpreterExecutionStrategy.cs" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>