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: d72b2e1a0b6733bba8e2f3abe1c310ce01102ea6 (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
<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=v3.0</NuGetTargetMoniker>
    <TargetFramework>netcoreapp3.0</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>
    <!-- System.Runtime.InteropServices implementation has to be forwarded to System.Private.Interop -->
    <!-- TODO https://github.com/dotnet/corert/issues/3231 -->
    <FileToExclude Include="System.Runtime.InteropServices" />
    <FileToExclude Include="mscorlib" />

    <!-- Pickup a few selected aot-specific files from uapaot instead -->
    <FileToExclude Include="System.Linq.Expressions" />
    <FileToExclude Include="System.Text.RegularExpressions" />
    <FileToExclude Include="System.Private.Xml" />
    <FileToExclude Include="System.Private.Xml.Linq" />

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

    <!-- TODO: WinRT -->
    <FileToExclude Include="System.Runtime.InteropServices.WindowsRuntime" />
    <FileToExclude Include="System.Runtime.WindowsRuntime" />
    <FileToExclude Include="System.Runtime.WindowsRuntime.UI.Xaml" />

    <!-- TODO: https://github.com/dotnet/corert/issues/5496 -->
    <!-- <FileToExclude Include="clrcompression" /> -->
  </ItemGroup>

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