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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/Microsoft.Private.CoreFx.NETCoreApp/netcoreapp.rids.props9
-rw-r--r--pkg/Microsoft.Private.CoreFx.UAP/uap.rids.props18
-rw-r--r--pkg/dir.props11
3 files changed, 2 insertions, 36 deletions
diff --git a/pkg/Microsoft.Private.CoreFx.NETCoreApp/netcoreapp.rids.props b/pkg/Microsoft.Private.CoreFx.NETCoreApp/netcoreapp.rids.props
index 6269203455..ef4618d15b 100644
--- a/pkg/Microsoft.Private.CoreFx.NETCoreApp/netcoreapp.rids.props
+++ b/pkg/Microsoft.Private.CoreFx.NETCoreApp/netcoreapp.rids.props
@@ -1,14 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup Condition="'$(PortableBuild)' == 'true'">
- <PackageRID>linux-$(ArchGroup)</PackageRID>
- <PackageRID Condition="'$(_runtimeOSFamily)' == 'osx'">osx-$(ArchGroup)</PackageRID>
- <PackageRID Condition="'$(_runtimeOSFamily)' == 'win'">win-$(ArchGroup)</PackageRID>
- </PropertyGroup>
- <PropertyGroup Condition="'$(PortableBuild)' != 'true'">
- <PackageRID>$(RuntimeOS)-$(ArchGroup)</PackageRID>
- </PropertyGroup>
-
<ItemGroup>
<OfficialBuildRID Include="linux-arm">
<Platform>arm</Platform>
diff --git a/pkg/Microsoft.Private.CoreFx.UAP/uap.rids.props b/pkg/Microsoft.Private.CoreFx.UAP/uap.rids.props
index c92651a996..4dda2a8ff5 100644
--- a/pkg/Microsoft.Private.CoreFx.UAP/uap.rids.props
+++ b/pkg/Microsoft.Private.CoreFx.UAP/uap.rids.props
@@ -1,23 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <_aotSuffix Condition="'$(TargetGroup)' == 'uapaot'">-aot</_aotSuffix>
- </PropertyGroup>
-
- <Choose>
- <When Condition="'$(PackageRID)' != ''" />
- <When Condition="'$(_runtimeOSFamily)' == 'win'">
- <PropertyGroup>
- <PackageRID>win10-$(ArchGroup)$(_aotSuffix)</PackageRID>
- </PropertyGroup>
- </When>
- <Otherwise>
- <PropertyGroup>
- <PackageRID>$(RuntimeOS)-$(ArchGroup)</PackageRID>
- </PropertyGroup>
- </Otherwise>
- </Choose>
-
<ItemGroup>
<OfficialBuildRID Include="win10-x86">
<Platform>x86</Platform>
diff --git a/pkg/dir.props b/pkg/dir.props
index 0e27f9cdcb..aee4309040 100644
--- a/pkg/dir.props
+++ b/pkg/dir.props
@@ -2,20 +2,13 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\dir.props" />
- <PropertyGroup>
- <_runtimeOSVersionIndex>$(RuntimeOS.IndexOfAny(".-0123456789"))</_runtimeOSVersionIndex>
- <_runtimeOSFamily Condition="'$(_runtimeOSVersionIndex)' != '-1'">$(RuntimeOS.SubString(0, $(_runtimeOSVersionIndex)))</_runtimeOSFamily>
- </PropertyGroup>
-
<!-- Packages opt-in to automatic RID-specific builds by placing a *.RID.props next to their project
- that defines the following:
- PackageRID property: the RID which we should be building for
- OfficialBuildRID item: all RIDs targeted by the package -->
+ that defines the OfficialBuildRID item: all RIDs targeted by the package -->
<Import Project="$(MSBuildProjectDirectory)\*.rids.props" />
<!-- create the "BuildRID" item which is the set of all supported RIDs, with metadata.
We'll add a RID for the current platform even if it isn't in the officially supported set -->
- <ItemGroup>
+ <ItemGroup Condition="'@(OfficialBuildRID)' != ''">
<BuildRID Include="@(OfficialBuildRID)" Exclude="$(PackageRID)"/>
<BuildRID Include="$(PackageRID)">
<Platform Condition="'$(ArchGroup)' == 'x64'">amd64</Platform>