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

Framework.depproj « Framework « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e994ff4256bfec40cae68e991dc2bdf4ef9eff52 (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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <OutputPath>$(BaseOutputPath)$(OSPlatformConfig)/framework</OutputPath>
  </PropertyGroup>

  <PropertyGroup>
    <NuGetTargetMoniker>.NETCoreApp,Version=v2.1</NuGetTargetMoniker>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <RuntimeIdentifiers>$(NuPkgRid)</RuntimeIdentifiers>
    <RidSpecificAssets>true</RidSpecificAssets>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="Framework-uapaot.depproj">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
    </ProjectReference>
    <ProjectReference Include="Framework-native.depproj" Condition="$(TargetsUnix) and '$(Platform)' != 'wasm'">
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
    </ProjectReference>
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.Private.CoreFx.NETCoreApp">
      <Version>$(CoreFxVersion)</Version>
    </PackageReference>
  </ItemGroup>

  <ItemGroup>
    <!-- Pickup a few selected aot-specific files from uapaot instead -->
    <FileToExclude Include="System.Linq.Expressions" />
    <FileToExclude Include="System.Reflection.Primitives" />
    <FileToExclude Include="System.Runtime.InteropServices" />
    <FileToExclude Include="System.Text.RegularExpressions" />

    <!-- TODO: Upstack framework -->
    <FileToExclude Include="System.Private.DataContractSerialization" />
    <FileToExclude Include="System.Private.Xml" />
    <FileToExclude Include="System.Reflection.DispatchProxy" />
    <FileToExclude Include="System.Private.Xml.Linq" />
    <FileToExclude Include="System.Data.Common" />
    <FileToExclude Include="System.Diagnostics.StackTrace" />

    <!-- TODO: Unmanaged -->
    <FileToExclude Include="clrcompression" />
  </ItemGroup>

  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>