Skip to content

Commit

Permalink
dotnet#71252 refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan committed Jun 29, 2022
1 parent 0904e1f commit ac4d8d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static partial class PlatformDetection
public static bool IsNetBSD => RuntimeInformation.IsOSPlatform(OSPlatform.Create("NETBSD"));
public static bool IsAndroid => RuntimeInformation.IsOSPlatform(OSPlatform.Create("ANDROID"));
public static bool IsNotAndroid => !IsAndroid;
public static bool IsNotAndroidX86 => IsNotAndroid || (IsAndroid && IsNotX86Process);
public static bool IsNotAndroidX86 => !(IsAndroid && IsX86Process);
public static bool IsiOS => RuntimeInformation.IsOSPlatform(OSPlatform.Create("IOS"));
public static bool IstvOS => RuntimeInformation.IsOSPlatform(OSPlatform.Create("TVOS"));
public static bool IsMacCatalyst => RuntimeInformation.IsOSPlatform(OSPlatform.Create("MACCATALYST"));
Expand Down

0 comments on commit ac4d8d5

Please sign in to comment.