Imported Upstream version 6.0.0.172

Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-04-12 14:10:50 +00:00
parent 8016999e4d
commit 64ac736ec5
32155 changed files with 3981439 additions and 75368 deletions

View File

@ -6,10 +6,13 @@ namespace System
public static readonly bool IsNotWinRT = true;
public static readonly bool IsWinRT = false;
public static readonly bool IsWindowsNanoServer = false;
public static readonly bool IsNotWindowsNanoServer = true;
public static readonly bool IsNotWindowsServerCore = true;
public static bool IsNotWindowsNanoServer => true;
public static bool IsNotWindowsServerCore => true;
public static bool IsWindows7 => false;
public static bool IsWindows10Version1607OrGreater => false;
public static bool IsWindows10Version1703OrGreater => false;
public static bool IsWindows10Version1709OrGreater => false;
public static bool IsFullFramework => false;
public static bool IsNonZeroLowerBoundArraySupported => true;
public static bool IsUap => false;
@ -19,12 +22,19 @@ namespace System
public static bool IsWindowsSubsystemForLinux => false;
public static bool IsFedora => false;
public static bool IsRedHatFamily => false;
public static bool IsRedHatFamily6 => false;
public static bool IsOpenSUSE => false;
public static bool IsUbuntu1404 => false;
public static bool IsNotRedHatFamily6 => true;
public static bool IsMacOsHighSierraOrHigher => false;
public static bool IsDebian8 => false;
public static bool IsInvokingStaticConstructorsSupported => true;
public static bool IsReflectionEmitSupported => true;
public static bool IsNetfx462OrNewer => false;
public static bool IsSsl2AndSsl3Supported => false;
public static bool IsWindows {
get {
PlatformID id = Environment.OSVersion.Platform;
@ -32,5 +42,7 @@ namespace System
}
}
public static bool IsInAppContainer => false;
public static bool IsAlpine => false;
public static bool IsNetCore => false;
}
}
}