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

Microsoft.NETCore.Targets.pkgproj « Microsoft.NETCore.Targets « pkg - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64109cdc1fb1b5c8d712de17cacd3dd982cc52fb (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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  
  <PropertyGroup>
    <Version>1.0.3</Version>
    <IsLineupPackage>true</IsLineupPackage>
    <RuntimeFileSource>runtime.json</RuntimeFileSource>
    <SkipValidatePackage>true</SkipValidatePackage>
  </PropertyGroup>
  
  <Import Project="..\NETStandard.Library\NETStandard.Library.packages.targets" />
  
  <ItemGroup>
    <!-- make this package installable and noop in a packages.config-based project -->
    <File Include="$(PlaceHolderFile)">
      <TargetPath>lib/netstandard1.0</TargetPath>
    </File>

    <Package Include="System.Private.Uri" />
    <NativePackage Include="runtime.native.System.IO.Compression" />
    <NativePackage Include="runtime.native.System" />
    <NativePackage Include="runtime.native.System.Net.Http" />
    <NativePackage Include="runtime.native.System.Security.Cryptography" />
    <NativePackage Include="runtime.native.System.Security.Cryptography.Apple" />
    <NativePackage Include="runtime.native.System.Security.Cryptography.OpenSsl" />
    <NativePackage Include="runtime.native.System.Net.Security" />
  </ItemGroup>

  <ItemGroup>
    <LineupProjectReference Include="@(Package->'$(SourceDir)%(Identity)/pkg/%(Identity).pkgproj')" />
    <LineupProjectReference Include="@(NativePackage->'$(SourceDir)Native/pkg/%(Identity)/%(Identity).pkgproj')" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>