Imported Upstream version 5.10.1.32

Former-commit-id: 2794e26b99e859eb52dbfee35ef478b2642c684e
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2018-04-04 08:45:48 +00:00
parent f846df2890
commit bdd85cbd9d
41 changed files with 183 additions and 32 deletions

View File

@ -1 +1 @@
b8bc6aad2cf9c2f696a5b86d87bee1924f08a571
834fd338ef94d05582a4235172fb09689e6d8479

View File

@ -1 +1 @@
f62963fb071d11f9a757731a717022b85b518fbc
640c33a2726c1c42a415050b7ffb13c46fe5e4a8

View File

@ -0,0 +1,21 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
[assembly:System.Reflection.AssemblyVersionAttribute("4.0.1.0")]
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Memory")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Memory")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.0.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.0.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Memory")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Buffers.OperationStatus))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Memory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.ReadOnlyMemory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.ReadOnlySpan<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Span<>))]

View File

@ -0,0 +1,21 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
[assembly:System.Reflection.AssemblyVersionAttribute("4.0.1.0")]
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Memory")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Memory")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.0.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.0.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Memory")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Buffers.OperationStatus))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Memory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.ReadOnlyMemory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.ReadOnlySpan<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Span<>))]

View File

@ -34,7 +34,7 @@ static class Consts
// Use these assembly version constants to make code more maintainable.
//
public const string MonoVersion = "5.10.1.29";
public const string MonoVersion = "5.10.1.32";
public const string MonoCompany = "Mono development team";
public const string MonoProduct = "Mono Common Language Infrastructure";
public const string MonoCopyright = "(c) Various Mono authors";

View File

@ -0,0 +1,35 @@
//
// Copyright (c) 2018 Microsoft
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle ("System.Memory")]
[assembly: AssemblyDescription ("System.Memory")]
[assembly: AssemblyDefaultAlias ("System.Memory")]
[assembly: AssemblyCompany ("Mono development team")]
[assembly: AssemblyProduct ("Mono Common Language Infrastructure")]
[assembly: AssemblyCopyright ("(c) Various Mono authors")]
[assembly: AssemblyVersion ("4.0.1.0")]
[assembly: AssemblyInformationalVersion ("4.0.0.0")]
[assembly: AssemblyFileVersion ("4.0.0.0")]

View File

@ -0,0 +1,24 @@
MCS_BUILD_DIR = ../../../build
thisdir = class/Facades/System.Memory
SUBDIRS =
include $(MCS_BUILD_DIR)/rules.make
LIBRARY_SUBDIR = Facades
LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)/Facades
LIBRARY = System.Memory.dll
KEYFILE = ../../Open.snk
LIBRARY_SNK = $(KEYFILE)
SIGN_FLAGS = /delaysign /nowarn:1616,1699
LIB_REFS =
LIB_MCS_FLAGS = $(SIGN_FLAGS)
PLATFORM_DEBUG_FLAGS =
NO_TEST = yes
include $(MCS_BUILD_DIR)/library.make

View File

@ -0,0 +1,3 @@
TypeForwarders.cs
AssemblyInfo.cs

View File

@ -0,0 +1,47 @@
//
// Copyright (c) 2018 Microsoft
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Memory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ReadOnlyMemory<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ReadOnlySpan<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Span<>))]
[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.OperationStatus))]
// TODO: we don't have these types yet
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.MemoryExtensions))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.SequencePosition))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.BuffersExtensions))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.IBufferWriter<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.IMemoryOwner<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.IPinnable))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.MemoryHandle))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.MemoryManager<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.MemoryPool<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.ReadOnlySequenceSegment<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.ReadOnlySequence<>))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.StandardFormat))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.Binary.BinaryPrimitives))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.Text.Base64))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.Text.Utf8Formatter))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Buffers.Text.Utf8Parser))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.MemoryMarshal))]
//[assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.SequenceMarshal))]

View File

@ -90,7 +90,7 @@ wasm_SUBDIRS = $(common_DEPS_SUBDIRS) $(netstandard_drawing_SUBDIRS) $(mobile_on
wasm_PARALLEL_SUBDIRS = $(common_SUBDIRS) $(mobile_only_SUBDIRS)
mobile_only_SUBDIRS = System.Net.Ping System.Runtime.Serialization.Formatters System.Security.Cryptography.Csp System.Security.Cryptography.Pkcs \
System.Security.Cryptography.Cng System.Runtime.Loader System.Xml.XPath.XmlDocument System.Reflection.DispatchProxy
System.Security.Cryptography.Cng System.Runtime.Loader System.Xml.XPath.XmlDocument System.Reflection.DispatchProxy System.Memory
mobile_only_DEPS_SUBDIRS = System.Security.Cryptography.OpenSsl

View File

@ -1 +1 @@
cb3a5f1b627cd361b7fa60e5017534a589c190e8
9577ab216d80eb1e8314d47bedb27b23bbb4c9bc

View File

@ -1 +1 @@
a87b90d2710c1e09417833abc258f85dec8566db
03723afaa8b0ad6e130bf13f77128f1a7c240de3

View File

@ -1 +1 @@
b5049115aebc36f4f1cf4b65e8715722bb637311
d836bbc3e54508f3e67fbe2cc221d40fe2e42196

View File

@ -1 +1 @@
117aaddbc39dba35194d00643b5326873db0790e
ab27b91f17d76908ae6bfe2cad0a04cd08e728cb

View File

@ -1 +1 @@
ae4336859fe9bad244960cdb47c9fd59cbe8349a
49491c5e1dc1c173ec04df31598536163252a01b

View File

@ -1 +1 @@
94f465ca7dc5e23012f67de9f3e3df56f5f87980
8badfa15ceefe6b5fb33708a404afc73d5ddddd5

View File

@ -1 +1 @@
2e2fa407a5b05e54bd0e710eedff9ba8c92bf966
e48a30788f854ee7f8baa2e8c0289876a8deee55

View File

@ -1 +1 @@
cb3a5f1b627cd361b7fa60e5017534a589c190e8
9577ab216d80eb1e8314d47bedb27b23bbb4c9bc

View File

@ -1 +1 @@
a87b90d2710c1e09417833abc258f85dec8566db
03723afaa8b0ad6e130bf13f77128f1a7c240de3

View File

@ -1 +1 @@
b5049115aebc36f4f1cf4b65e8715722bb637311
d836bbc3e54508f3e67fbe2cc221d40fe2e42196

View File

@ -1 +1 @@
117aaddbc39dba35194d00643b5326873db0790e
ab27b91f17d76908ae6bfe2cad0a04cd08e728cb

View File

@ -1 +1 @@
ae4336859fe9bad244960cdb47c9fd59cbe8349a
49491c5e1dc1c173ec04df31598536163252a01b

View File

@ -1 +1 @@
94f465ca7dc5e23012f67de9f3e3df56f5f87980
8badfa15ceefe6b5fb33708a404afc73d5ddddd5

View File

@ -1 +1 @@
2e2fa407a5b05e54bd0e710eedff9ba8c92bf966
e48a30788f854ee7f8baa2e8c0289876a8deee55

View File

@ -1 +1 @@
cb3a5f1b627cd361b7fa60e5017534a589c190e8
9577ab216d80eb1e8314d47bedb27b23bbb4c9bc

View File

@ -1 +1 @@
a87b90d2710c1e09417833abc258f85dec8566db
03723afaa8b0ad6e130bf13f77128f1a7c240de3

View File

@ -1 +1 @@
b5049115aebc36f4f1cf4b65e8715722bb637311
d836bbc3e54508f3e67fbe2cc221d40fe2e42196

View File

@ -1 +1 @@
117aaddbc39dba35194d00643b5326873db0790e
ab27b91f17d76908ae6bfe2cad0a04cd08e728cb

View File

@ -1 +1 @@
ae4336859fe9bad244960cdb47c9fd59cbe8349a
49491c5e1dc1c173ec04df31598536163252a01b

View File

@ -1 +1 @@
94f465ca7dc5e23012f67de9f3e3df56f5f87980
8badfa15ceefe6b5fb33708a404afc73d5ddddd5

View File

@ -1 +1 @@
2e2fa407a5b05e54bd0e710eedff9ba8c92bf966
e48a30788f854ee7f8baa2e8c0289876a8deee55

View File

@ -1 +1 @@
#define FULL_VERSION "explicit/083c130"
#define FULL_VERSION "explicit/12304ec"

Binary file not shown.

View File

@ -1 +1 @@
ebe2e5afb091670592241a6864f3a9d87706f117
f75fea715ed961102106488ed4c7f2ff4471411a

Binary file not shown.

View File

@ -1 +1 @@
9222611cb1ed0ceef58fac977ce22414de3e975e
bacafd95258e7a76fddc478783d38629187febcd

Binary file not shown.

View File

@ -1 +1 @@
8383061c2d674dc3dc8312857244ec4c9cf4e511
30c827cae3e589404c03e27645d26f7ece4c37f4

View File

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mono 5.10.1.29\n"
"Project-Id-Version: mono 5.10.1.32\n"
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
"POT-Creation-Date: 2018-04-03 16:30+0000\n"
"POT-Creation-Date: 2018-04-04 08:21+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

Binary file not shown.

View File

@ -1 +1 @@
44d846efb0be5ec89b90510e181df0f7b3974a78
8698a13a9b592127a7039fe5c55a72cdcef54a3e