Merge branch 'upstream'

Former-commit-id: c64c77ce3ac9260ae1c190921853c7dd70a28a68
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2019-02-23 08:37:03 +00:00
commit 8742f7baa5
72 changed files with 2153 additions and 158 deletions

View File

@ -1 +1 @@
262c86fa75a3dd26eafd69386176e8cff3081c27
60fbe4d6574a873331da45f48feeb7e9073907d0

View File

@ -1 +1 @@
99d427f42f44f09d6c0bf5414df245810f22a74a
148cda3fbad1011ea175062fbc6daec321caeb00

View File

@ -1 +1 @@
9f290631c6b4164ddb0330177fa773f02a2111be
4c6af0e4fa6d4be39b5ff1352917aacbcefb80da

View File

@ -0,0 +1,16 @@
// 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.0.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.Drawing.Common")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Drawing.Common")]
[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.Drawing.Common")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]

View File

@ -1 +0,0 @@
9f290631c6b4164ddb0330177fa773f02a2111be

View File

@ -21,14 +21,3 @@
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Security.SecurityCriticalAttribute]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace System.Drawing
{
public struct Color {}
public enum KnownColor {}
public struct Point {}
public struct PointF {}
public struct Rectangle {}
public struct RectangleF {}
public struct Size {}
public struct SizeF {}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,9 @@ using System.Diagnostics.CodeAnalysis;
namespace System.Drawing
{
[SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")]
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
#if netcoreapp20
internal
#else

View File

@ -15,6 +15,9 @@ using System.Threading;
namespace System.Drawing
{
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public class ColorConverter : TypeConverter
{
private static readonly Lazy<StandardValuesCollection> s_valuesLazy = new Lazy<StandardValuesCollection>(() => {

View File

@ -4,6 +4,9 @@
namespace System.Drawing
{
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public static class SystemColors
{
public static Color ActiveBorder => ColorUtil.FromKnownColor(KnownColor.ActiveBorder);

View File

@ -12,6 +12,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public readonly struct Color : IEquatable<Color>
{

View File

@ -14,6 +14,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public struct Point : IEquatable<Point>
{

View File

@ -14,6 +14,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public struct PointF : IEquatable<PointF>
{

View File

@ -15,6 +15,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public struct Rectangle : IEquatable<Rectangle>
{

View File

@ -15,6 +15,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public struct RectangleF : IEquatable<RectangleF>
{

View File

@ -17,6 +17,9 @@ namespace System.Drawing
[Serializable]
#if !MONO
[System.Runtime.CompilerServices.TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
#endif
#if MONODROID
[System.Runtime.CompilerServices.TypeForwardedFrom("Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065")]
#endif
public struct Size : IEquatable<Size>
{

Some files were not shown because too many files have changed in this diff Show More