diff --git a/layout/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.props b/layout/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.props index 4f950cda743e..685d989b6b18 100644 --- a/layout/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.props +++ b/layout/Microsoft.Private.CoreFx.NETCoreApp/Microsoft.Private.CoreFx.NETCoreApp.props @@ -9,6 +9,7 @@ + @@ -36,4 +37,4 @@ - \ No newline at end of file + diff --git a/pkg/Microsoft.NETCore.Platforms/runtime.json b/pkg/Microsoft.NETCore.Platforms/runtime.json index 5c7da9c0c800..e01333a0584d 100644 --- a/pkg/Microsoft.NETCore.Platforms/runtime.json +++ b/pkg/Microsoft.NETCore.Platforms/runtime.json @@ -147,6 +147,9 @@ "unix-arm": { "#import": [ "unix" ] }, + "unix-armel": { + "#import": [ "unix" ] + }, "unix-arm64": { "#import": [ "unix" ] }, @@ -191,6 +194,9 @@ "linux-arm": { "#import": [ "linux", "unix-arm" ] }, + "linux-armel": { + "#import": [ "linux", "unix-armel" ] + }, "linux-arm64": { "#import": [ "linux", "unix-arm64" ] }, @@ -291,6 +297,9 @@ "debian-arm": { "#import": [ "debian", "linux-arm" ] }, + "debian-armel": { + "#import": [ "debian", "linux-armel" ] + }, "debian-arm64": { "#import": [ "debian", "linux-arm64" ] }, @@ -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" ] }, diff --git a/pkg/Microsoft.Private.PackageBaseline/packageIndex.json b/pkg/Microsoft.Private.PackageBaseline/packageIndex.json index e7c33ef85ec4..9e11b3e0dd78 100644 --- a/pkg/Microsoft.Private.PackageBaseline/packageIndex.json +++ b/pkg/Microsoft.Private.PackageBaseline/packageIndex.json @@ -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", @@ -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" diff --git a/src/Native/pkg/dir.props b/src/Native/pkg/dir.props index 5c967a177dea..11678872050c 100644 --- a/src/Native/pkg/dir.props +++ b/src/Native/pkg/dir.props @@ -18,6 +18,7 @@ $(LinuxNativePath) $(LinuxNativePath) $(LinuxNativePath) + $(LinuxNativePath) true diff --git a/src/Native/pkg/runtime.native.System.IO.Compression/debian/runtime.native.System.IO.Compression.pkgproj b/src/Native/pkg/runtime.native.System.IO.Compression/debian/runtime.native.System.IO.Compression.pkgproj index 0ffb82b6fffb..311a24faf600 100644 --- a/src/Native/pkg/runtime.native.System.IO.Compression/debian/runtime.native.System.IO.Compression.pkgproj +++ b/src/Native/pkg/runtime.native.System.IO.Compression/debian/runtime.native.System.IO.Compression.pkgproj @@ -1,10 +1,10 @@ - + debian.8-$(PackagePlatform) - - x64; + + x64;armel; @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.builds b/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.builds index 9c8f6a1fbef7..5b3b144a0560 100644 --- a/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.builds +++ b/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.builds @@ -14,6 +14,10 @@ debian.8 amd64 + + + debian.8 + armel fedora.23 @@ -63,6 +67,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + Windows_NT x86 diff --git a/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.pkgproj b/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.pkgproj index 5ffbcefeb596..168169b2dfee 100644 --- a/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.pkgproj +++ b/src/Native/pkg/runtime.native.System.IO.Compression/runtime.native.System.IO.Compression.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + x86 diff --git a/src/Native/pkg/runtime.native.System.IO.Compression/tizen/4.0.0/runtime.native.System.IO.Compression.pkgproj b/src/Native/pkg/runtime.native.System.IO.Compression/tizen/4.0.0/runtime.native.System.IO.Compression.pkgproj new file mode 100644 index 000000000000..90fa53cac2d7 --- /dev/null +++ b/src/Native/pkg/runtime.native.System.IO.Compression/tizen/4.0.0/runtime.native.System.IO.Compression.pkgproj @@ -0,0 +1,15 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + + diff --git a/src/Native/pkg/runtime.native.System.Net.Http/debian/runtime.native.System.Net.Http.pkgproj b/src/Native/pkg/runtime.native.System.Net.Http/debian/runtime.native.System.Net.Http.pkgproj index 3e32302c5247..78e39643059a 100644 --- a/src/Native/pkg/runtime.native.System.Net.Http/debian/runtime.native.System.Net.Http.pkgproj +++ b/src/Native/pkg/runtime.native.System.Net.Http/debian/runtime.native.System.Net.Http.pkgproj @@ -1,10 +1,10 @@ - + debian.8-$(PackagePlatform) - - x64; + + x64;armel; @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.builds b/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.builds index 2463e9415d17..9ae454b15682 100644 --- a/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.builds +++ b/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.builds @@ -15,6 +15,10 @@ debian.8 amd64 + + debian.8 + armel + fedora.23 amd64 @@ -63,6 +67,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + diff --git a/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.pkgproj b/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.pkgproj index 1f090c2a0d3b..b3662fd84d7e 100644 --- a/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.pkgproj +++ b/src/Native/pkg/runtime.native.System.Net.Http/runtime.native.System.Net.Http.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + diff --git a/src/Native/pkg/runtime.native.System.Net.Http/tizen/4.0.0/runtime.native.System.Net.Http.pkgproj b/src/Native/pkg/runtime.native.System.Net.Http/tizen/4.0.0/runtime.native.System.Net.Http.pkgproj new file mode 100644 index 000000000000..cca24c590a11 --- /dev/null +++ b/src/Native/pkg/runtime.native.System.Net.Http/tizen/4.0.0/runtime.native.System.Net.Http.pkgproj @@ -0,0 +1,15 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + + diff --git a/src/Native/pkg/runtime.native.System.Net.Security/debian/runtime.native.System.Net.Security.pkgproj b/src/Native/pkg/runtime.native.System.Net.Security/debian/runtime.native.System.Net.Security.pkgproj index 984c8c24d3fb..f8a2d2766980 100644 --- a/src/Native/pkg/runtime.native.System.Net.Security/debian/runtime.native.System.Net.Security.pkgproj +++ b/src/Native/pkg/runtime.native.System.Net.Security/debian/runtime.native.System.Net.Security.pkgproj @@ -1,10 +1,10 @@ - + debian.8-$(PackagePlatform) - - x64; + + x64;armel; @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.builds b/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.builds index f6d0d52ab5db..ce44466edec0 100644 --- a/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.builds +++ b/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.builds @@ -15,6 +15,10 @@ debian.8 amd64 + + debian.8 + armel + fedora.23 amd64 @@ -63,6 +67,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + diff --git a/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.pkgproj b/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.pkgproj index 856b78b74a92..d45a438138d6 100644 --- a/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.pkgproj +++ b/src/Native/pkg/runtime.native.System.Net.Security/runtime.native.System.Net.Security.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + diff --git a/src/Native/pkg/runtime.native.System.Net.Security/tizen/4.0.0/runtime.native.System.Net.Security.pkgproj b/src/Native/pkg/runtime.native.System.Net.Security/tizen/4.0.0/runtime.native.System.Net.Security.pkgproj new file mode 100644 index 000000000000..3f541b5b2aae --- /dev/null +++ b/src/Native/pkg/runtime.native.System.Net.Security/tizen/4.0.0/runtime.native.System.Net.Security.pkgproj @@ -0,0 +1,15 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/debian/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/debian/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj index 93ac6630c708..936cb613c368 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/debian/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/debian/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj @@ -1,10 +1,10 @@ - + debian.8-$(PackagePlatform) - - x64; + + x64;armel; diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.builds b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.builds index a0a8e719ad78..441b9e587e87 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.builds +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.builds @@ -15,6 +15,11 @@ debian.8 amd64 + + debian.8 + armel + + fedora.23 amd64 @@ -63,6 +68,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj index 3f57206206ff..ce47e92b7eb0 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/tizen/4.0.0/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/tizen/4.0.0/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj new file mode 100644 index 000000000000..042d03739027 --- /dev/null +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography.OpenSsl/tizen/4.0.0/runtime.native.System.Security.Cryptography.OpenSsl.pkgproj @@ -0,0 +1,15 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography/debian/runtime.native.System.Security.Cryptography.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography/debian/runtime.native.System.Security.Cryptography.pkgproj index 1af8550b9809..55242cd05822 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography/debian/runtime.native.System.Security.Cryptography.pkgproj +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography/debian/runtime.native.System.Security.Cryptography.pkgproj @@ -1,10 +1,10 @@ - + debian.8-$(PackagePlatform) - - x64; + + x64;armel; @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.builds b/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.builds index ba8760aaea79..56a0902b2877 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.builds +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.builds @@ -15,6 +15,10 @@ debian.8 amd64 + + debian.8 + armel + fedora.23 amd64 @@ -63,6 +67,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.pkgproj index fb003be2e280..6481b6ed4662 100644 --- a/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.pkgproj +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography/runtime.native.System.Security.Cryptography.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + diff --git a/src/Native/pkg/runtime.native.System.Security.Cryptography/tizen/4.0.0/runtime.native.System.Security.Cryptography.pkgproj b/src/Native/pkg/runtime.native.System.Security.Cryptography/tizen/4.0.0/runtime.native.System.Security.Cryptography.pkgproj new file mode 100644 index 000000000000..ee04734a1312 --- /dev/null +++ b/src/Native/pkg/runtime.native.System.Security.Cryptography/tizen/4.0.0/runtime.native.System.Security.Cryptography.pkgproj @@ -0,0 +1,15 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + + diff --git a/src/Native/pkg/runtime.native.System/debian/runtime.native.System.pkgproj b/src/Native/pkg/runtime.native.System/debian/runtime.native.System.pkgproj index 7bcc84b0f533..109ba0c404b4 100644 --- a/src/Native/pkg/runtime.native.System/debian/runtime.native.System.pkgproj +++ b/src/Native/pkg/runtime.native.System/debian/runtime.native.System.pkgproj @@ -3,8 +3,8 @@ debian.8-$(PackagePlatform) - - x64; + + x64;armel; @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/Native/pkg/runtime.native.System/runtime.native.System.builds b/src/Native/pkg/runtime.native.System/runtime.native.System.builds index c1e25bc130e0..58193578b51b 100644 --- a/src/Native/pkg/runtime.native.System/runtime.native.System.builds +++ b/src/Native/pkg/runtime.native.System/runtime.native.System.builds @@ -15,6 +15,10 @@ debian.8 amd64 + + debian.8 + armel + fedora.23 amd64 @@ -63,6 +67,10 @@ alpine.3.4.3 amd64 + + tizen.4.0.0 + armel + diff --git a/src/Native/pkg/runtime.native.System/runtime.native.System.pkgproj b/src/Native/pkg/runtime.native.System/runtime.native.System.pkgproj index c319829caca5..3f4bb15c2982 100644 --- a/src/Native/pkg/runtime.native.System/runtime.native.System.pkgproj +++ b/src/Native/pkg/runtime.native.System/runtime.native.System.pkgproj @@ -1,4 +1,4 @@ - + @@ -19,6 +19,9 @@ amd64 + + armel + amd64 @@ -52,6 +55,9 @@ amd64 + + armel + diff --git a/src/Native/pkg/runtime.native.System/tizen/4.0.0/runtime.native.System.pkgproj b/src/Native/pkg/runtime.native.System/tizen/4.0.0/runtime.native.System.pkgproj new file mode 100644 index 000000000000..62302812023e --- /dev/null +++ b/src/Native/pkg/runtime.native.System/tizen/4.0.0/runtime.native.System.pkgproj @@ -0,0 +1,18 @@ + + + + + tizen.4.0.0-$(PackagePlatform) + + armel; + + + + runtimes/$(PackageTargetRuntime)/native + + + runtimes/$(PackageTargetRuntime)/native + + + +