You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
8
external/corefx/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props
vendored
Normal file
8
external/corefx/pkg/Microsoft.Private.CoreFx.NETCoreApp/Configurations.props
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<BuildConfigurations>
|
||||
netcoreapp;
|
||||
</BuildConfigurations>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -27,6 +27,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<IsLineupPackage Condition="'$(PackageTargetRuntime)' == ''">true</IsLineupPackage>
|
||||
<PreventImplementationReference Condition="'$(PackageTargetRuntime)' != ''">true</PreventImplementationReference>
|
||||
<TargetFrameworkName>netcoreapp</TargetFrameworkName>
|
||||
<TargetFrameworkVersion>2.0</TargetFrameworkVersion>
|
||||
<TargetFramework>$(TargetFrameworkName)$(TargetFrameworkVersion)</TargetFramework>
|
||||
@ -39,32 +40,39 @@
|
||||
<NETStandardLibraryPackage>NETStandard.Library2</NETStandardLibraryPackage>
|
||||
<NETStandardLibraryPackageVersion>2.0.0-beta-24709-0</NETStandardLibraryPackageVersion>
|
||||
<NETStandardVersion>2.0</NETStandardVersion>
|
||||
|
||||
<!-- Include symbols in package by default-->
|
||||
<IncludeSymbolsInPackage Condition="'$(IncludeSymbolsInPackage)' == ''">true</IncludeSymbolsInPackage>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Condition="'$(PackageTargetRuntime)' == ''" Project="$(RefBinDir)\*.props" />
|
||||
<ItemGroup Condition="'$(PackageTargetRuntime)' == ''">
|
||||
<ProjectReference Include="@(Project)" />
|
||||
|
||||
<!-- Include refs -->
|
||||
<RefFile Include="$(RefBinDir)/*.*">
|
||||
<TargetPath>ref/$(TargetFramework)</TargetPath>
|
||||
</RefFile>
|
||||
<File Include="@(RefFile)" />
|
||||
<File Include="@(FileToPackage)">
|
||||
<TargetPath Condition="'%(File.TargetPath)' == ''">ref/$(TargetFramework)</TargetPath>
|
||||
</File>
|
||||
<!-- force a missing file if ref build is absent -->
|
||||
<File Include="$(RefBinDir)/MISSING_REF_BUILD" Condition="'@(RefFile)' == ''" />
|
||||
<File Include="$(RefBinDir)/MISSING_REF_BUILD" Condition="'@(FileToPackage)' == ''" />
|
||||
|
||||
<FilePackageDependency Include="Microsoft.NETCore.Platforms">
|
||||
<_buildRIDWithMetadata Include="@(BuildRID)">
|
||||
<TargetRuntime>%(Identity)</TargetRuntime>
|
||||
<Version>$(PackageVersion)</Version>
|
||||
</_buildRIDWithMetadata>
|
||||
<Dependency Include="@(_buildRIDWithMetadata->'runtime.%(Identity).$(Id)')" />
|
||||
|
||||
<Dependency Include="Microsoft.NETCore.Platforms">
|
||||
<Version>$(PlatformPackageVersion)</Version>
|
||||
</FilePackageDependency>
|
||||
</Dependency>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Condition="'$(PackageTargetRuntime)' != ''" Project="$(LibBinDir)\*.props" />
|
||||
<ItemGroup Condition="'$(PackageTargetRuntime)' != ''">
|
||||
<!-- Include lib -->
|
||||
<LibFile Include="$(LibBinDir)/*.*">
|
||||
<TargetPath>runtimes/$(PackageTargetRuntime)/lib/$(TargetFramework)</TargetPath>
|
||||
</LibFile>
|
||||
<File Include="@(LibFile)" />
|
||||
<File Include="@(FileToPackage)">
|
||||
<TargetPath Condition="'%(File.TargetPath)' == ''">runtimes/$(PackageTargetRuntime)/lib/$(TargetFramework)</TargetPath>
|
||||
</File>
|
||||
<!-- force a missing file if lib build is absent -->
|
||||
<File Include="$(LibBinDir)/MISSING_LIB_BUILD" Condition="'@(LibFile)' == ''" />
|
||||
<File Include="$(LibBinDir)/MISSING_LIB_BUILD" Condition="'@(FileToPackage)' == ''" />
|
||||
|
||||
<!-- Include native -->
|
||||
<ExcludeNative Include="$(NativeBinDir)/*.lib" />
|
||||
@ -84,14 +92,9 @@
|
||||
<ItemGroup>
|
||||
<!-- Exclude shims from the closure verification -->
|
||||
<ExcludeFromClosure Include="mscorlib" />
|
||||
<ExcludeFromClosure Include="System.Core" />
|
||||
<ExcludeFromClosure Include="System" />
|
||||
<ExcludeFromClosure Include="System.Drawing" />
|
||||
<ExcludeFromClosure Include="System.Numerics" />
|
||||
<ExcludeFromClosure Include="System.Runtime.Serialization" />
|
||||
<ExcludeFromClosure Include="System.Web" />
|
||||
<ExcludeFromClosure Include="System.Xml" />
|
||||
<ExcludeFromClosure Include="System.Xml.Linq" />
|
||||
<ExcludeFromClosure Include="System.Core" />
|
||||
<ExcludeFromClosure Include="System.Data" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
|
||||
<PropertyGroup>
|
||||
<_runtimeOSVersionIndex>$(RuntimeOS.IndexOfAny(".-0123456789"))</_runtimeOSVersionIndex>
|
||||
<_runtimeOSFamily Condition="'$(_runtimeOSVersionIndex)' != '-1'">$(RuntimeOS.SubString(0, $(_runtimeOSVersionIndex)))</_runtimeOSFamily>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<Choose>
|
||||
<When Condition="'$(PackageRID)' != ''" />
|
||||
<When Condition="'$(_runtimeOSFamily)' == 'win'">
|
||||
@ -17,7 +17,7 @@
|
||||
</When>
|
||||
<When Condition="'$(_runtimeOSFamily)' == 'osx'">
|
||||
<PropertyGroup>
|
||||
<PackageRID>osx.10.10-$(ArchGroup)</PackageRID>
|
||||
<PackageRID>osx.10.12-$(ArchGroup)</PackageRID>
|
||||
</PropertyGroup>
|
||||
</When>
|
||||
<When Condition="'$(_runtimeOSFamily)' == 'rhel'">
|
||||
@ -43,7 +43,7 @@
|
||||
<OfficialBuildRID Include="linux-x64" />
|
||||
<OfficialBuildRID Include="opensuse.13.2-x64" />
|
||||
<OfficialBuildRID Include="opensuse.42.1-x64" />
|
||||
<OfficialBuildRID Include="osx.10.10-x64" />
|
||||
<OfficialBuildRID Include="osx.10.12-x64" />
|
||||
<OfficialBuildRID Include="rhel.7-x64" />
|
||||
<OfficialBuildRID Include="tizen.4.0.0-armel">
|
||||
<Platform>armel</Platform>
|
||||
|
Reference in New Issue
Block a user