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

System.Runtime.Extensions.pkgproj « win « pkg « System.Runtime.Extensions « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f67998a319d2644eba5a93039b50773f9c780e3 (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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <PackageTargetRuntime>win</PackageTargetRuntime>
    <PreventImplementationReference>true</PreventImplementationReference>
  </PropertyGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\src\System.Runtime.Extensions.csproj">
      <OSGroup>Windows_NT</OSGroup>
    </ProjectReference>
    <ProjectReference Include="..\..\src\System.Runtime.Extensions.csproj">
      <OSGroup>Windows_NT</OSGroup>
      <TargetGroup>netcoreapp1.2corert</TargetGroup>
    </ProjectReference>
    <!-- AOT implementation comes from AOT package -->
    <File Include="$(PlaceholderFile)">
      <TargetPath>runtimes/aot/lib/uap10.1</TargetPath>
      <TargetFramework>aot</TargetFramework>
    </File>
    <!-- don't use the dotnet implementation for any version of desktop, it's implementation comes from the reference package -->
    <ExternalOnTargetFramework Include="net" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>