Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<BuildOSGroup Include="opensuse.42.1" />
<BuildOSGroup Include="osx.10.10" />
<BuildOSGroup Include="rhel.7" />
<BuildOSGroup Include="tizen.4.0.0" />
<BuildOSGroup Include="ubuntu.14.04" />
<BuildOSGroup Include="ubuntu.16.04" />
<BuildOSGroup Include="ubuntu.16.10" />
Expand Down Expand Up @@ -36,4 +37,4 @@

<Project Include="@(_project->'$(MSBuildProjectName).pkgproj')" />
</ItemGroup>
</Project>
</Project>
22 changes: 22 additions & 0 deletions pkg/Microsoft.NETCore.Platforms/runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@
"unix-arm": {
"#import": [ "unix" ]
},
"unix-armel": {
"#import": [ "unix" ]
},
"unix-arm64": {
"#import": [ "unix" ]
},
Expand Down Expand Up @@ -191,6 +194,9 @@
"linux-arm": {
"#import": [ "linux", "unix-arm" ]
},
"linux-armel": {
"#import": [ "linux", "unix-armel" ]
},
"linux-arm64": {
"#import": [ "linux", "unix-arm64" ]
},
Expand Down Expand Up @@ -291,6 +297,9 @@
"debian-arm": {
"#import": [ "debian", "linux-arm" ]
},
"debian-armel": {
"#import": [ "debian", "linux-armel" ]
},
"debian-arm64": {
"#import": [ "debian", "linux-arm64" ]
},
Expand All @@ -307,10 +316,23 @@
"debian.8-arm": {
"#import": [ "debian.8", "debian-arm" ]
},
"debian.8-armel": {
"#import": [ "debian.8", "debian-armel" ]
},
"debian.8-arm64": {
"#import": [ "debian.8", "debian-arm64" ]
},

"tizen": {
"#import": [ "linux" ]
},
"tizen-armel": {
"#import": [ "tizen", "linux-armel" ]
},
"tizen.4.0.0-armel": {
"#import": [ "tizen.4.0.0", "tizen-armel" ]
},

"ubuntu": {
"#import": [ "debian" ]
},
Expand Down
36 changes: 36 additions & 0 deletions pkg/Microsoft.Private.PackageBaseline/packageIndex.json
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,36 @@
],
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System": {
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System.IO.Compression": {
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System.Net.Http": {
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System.Net.Security": {
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System.Security.Cryptography": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System.IO.Compression": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System.Net.Http": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System.Net.Security": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System.Security.Cryptography": {
"BaselineVersion": "4.4.0"
},
"runtime.fedora.23-x64.runtime.native.System": {
"StableVersions": [
"1.0.1",
Expand Down Expand Up @@ -2991,6 +3021,12 @@
],
"BaselineVersion": "4.4.0"
},
"runtime.debian.8-armel.runtime.native.System.Security.Cryptography.OpenSsl": {
"BaselineVersion": "4.4.0"
},
"runtime.tizen.4.0.0-armel.runtime.native.System.Security.Cryptography.OpenSsl": {
"BaselineVersion": "4.4.0"
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": {
"StableVersions": [
"4.3.0"
Expand Down
1 change: 1 addition & 0 deletions src/Native/pkg/dir.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<Ubuntu1604NativePath Condition="'$(Ubuntu1604NativePath)' == ''">$(LinuxNativePath)</Ubuntu1604NativePath>
<Ubuntu1610NativePath Condition="'$(Ubuntu1610NativePath)' == ''">$(LinuxNativePath)</Ubuntu1610NativePath>
<Alpine343NativePath Condition="'$(Alpine343NativePath)' == ''">$(LinuxNativePath)</Alpine343NativePath>
<Tizen400NativePath Condition="'$(Tizen400NativePath)' == ''">$(LinuxNativePath)</Tizen400NativePath>
<SkipPackageFileCheck>true</SkipPackageFileCheck>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>debian.8-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for x64 -->
<PackagePlatforms>x64;</PackagePlatforms>
<!-- only build for x64/armel -->
<PackagePlatforms>x64;armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(DebianNativePath)System.IO.Compression.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<Project Include="debian\runtime.native.System.IO.Compression.pkgproj">
<OSGroup>debian.8</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="debian\runtime.native.System.IO.Compression.pkgproj">
<OSGroup>debian.8</OSGroup>
<Platform>armel</Platform>
</Project>
<Project Include="fedora\23\runtime.native.System.IO.Compression.pkgproj">
<OSGroup>fedora.23</OSGroup>
Expand Down Expand Up @@ -63,6 +67,10 @@
<OSGroup>alpine.3.4.3</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="tizen\4.0.0\runtime.native.System.IO.Compression.pkgproj">
<OSGroup>tizen.4.0.0</OSGroup>
<Platform>armel</Platform>
</Project>
<Project Include="win\runtime.native.System.IO.Compression.pkgproj">
<OSGroup>Windows_NT</OSGroup>
<Platform>x86</Platform>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand All @@ -19,6 +19,9 @@
<ProjectReference Include="debian\runtime.native.System.IO.Compression.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="debian\runtime.native.System.IO.Compression.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
<ProjectReference Include="fedora\23\runtime.native.System.IO.Compression.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
Expand Down Expand Up @@ -52,6 +55,9 @@
<ProjectReference Include="alpine\3.4.3\runtime.native.System.IO.Compression.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="tizen\4.0.0\runtime.native.System.IO.Compression.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
<ProjectReference Include="win\runtime.native.System.IO.Compression.pkgproj">
<Platform>x86</Platform>
</ProjectReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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>tizen.4.0.0-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for armel -->
<PackagePlatforms>armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(Tizen400NativePath)System.IO.Compression.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>debian.8-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for x64 -->
<PackagePlatforms>x64;</PackagePlatforms>
<!-- only build for x64/armel-->
<PackagePlatforms>x64;armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(DebianNativePath)System.Net.Http.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<OSGroup>debian.8</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="debian\runtime.native.System.Net.Http.pkgproj">
<OSGroup>debian.8</OSGroup>
<Platform>armel</Platform>
</Project>
<Project Include="fedora\23\runtime.native.System.Net.Http.pkgproj">
<OSGroup>fedora.23</OSGroup>
<Platform>amd64</Platform>
Expand Down Expand Up @@ -63,6 +67,10 @@
<OSGroup>alpine.3.4.3</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="tizen\4.0.0\runtime.native.System.Net.Http.pkgproj">
<OSGroup>tizen.4.0.0</OSGroup>
<Platform>armel</Platform>
</Project>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand All @@ -19,6 +19,9 @@
<ProjectReference Include="debian\runtime.native.System.Net.Http.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="debian\runtime.native.System.Net.Http.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
<ProjectReference Include="fedora\23\runtime.native.System.Net.Http.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
Expand Down Expand Up @@ -52,6 +55,9 @@
<ProjectReference Include="alpine\3.4.3\runtime.native.System.Net.Http.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="tizen\4.0.0\runtime.native.System.Net.Http.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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>tizen.4.0.0-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for armel -->
<PackagePlatforms>armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(Tizen400NativePath)System.Net.Http.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>debian.8-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for x64 -->
<PackagePlatforms>x64;</PackagePlatforms>
<!-- only build for x64/armel -->
<PackagePlatforms>x64;armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(DebianNativePath)\System.Net.Security.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<OSGroup>debian.8</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="debian\runtime.native.System.Net.Security.pkgproj">
<OSGroup>debian.8</OSGroup>
<Platform>armel</Platform>
</Project>
<Project Include="fedora\23\runtime.native.System.Net.Security.pkgproj">
<OSGroup>fedora.23</OSGroup>
<Platform>amd64</Platform>
Expand Down Expand Up @@ -63,6 +67,10 @@
<OSGroup>alpine.3.4.3</OSGroup>
<Platform>amd64</Platform>
</Project>
<Project Include="tizen\4.0.0\runtime.native.System.Net.Security.pkgproj">
<OSGroup>tizen.4.0.0</OSGroup>
<Platform>armel</Platform>
</Project>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand All @@ -19,6 +19,9 @@
<ProjectReference Include="debian\runtime.native.System.Net.Security.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="debian\runtime.native.System.Net.Security.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
<ProjectReference Include="fedora\23\runtime.native.System.Net.Security.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
Expand Down Expand Up @@ -52,6 +55,9 @@
<ProjectReference Include="alpine\3.4.3\runtime.native.System.Net.Security.pkgproj">
<Platform>amd64</Platform>
</ProjectReference>
<ProjectReference Include="tizen\4.0.0\runtime.native.System.Net.Security.pkgproj">
<Platform>armel</Platform>
</ProjectReference>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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>tizen.4.0.0-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for armel -->
<PackagePlatforms>armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(Tizen400NativePath)\System.Net.Security.Native.so">
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath>
</NativeFile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>debian.8-$(PackagePlatform)</PackageTargetRuntime>
<!-- only build for x64 -->
<PackagePlatforms>x64;</PackagePlatforms>
<!-- only build for x64/armel -->
<PackagePlatforms>x64;armel;</PackagePlatforms>
</PropertyGroup>
<ItemGroup>
<NativeFile Include="$(DebianNativePath)System.Security.Cryptography.Native.OpenSsl.so">
Expand Down
Loading