8 references to GetWindowsVersion
System.Windows.Forms.Primitives.TestUtilities (8)
PlatformDetection.Windows.cs (8)
33
public static int WindowsVersion =>
GetWindowsVersion
();
43
GetWindowsVersion
() == 10 && GetWindowsMinorVersion() == 0 && GetWindowsBuildNumber() >= 14393;
45
GetWindowsVersion
() == 10 && GetWindowsMinorVersion() == 0 && GetWindowsBuildNumber() >= 15063;
47
GetWindowsVersion
() == 10 && GetWindowsMinorVersion() == 0 && GetWindowsBuildNumber() >= 16299;
49
GetWindowsVersion
() == 10 && GetWindowsMinorVersion() == 0 && GetWindowsBuildNumber() >= 17134;
51
GetWindowsVersion
() == 10 && GetWindowsMinorVersion() == 0 && GetWindowsBuildNumber() >= 22000;
73
public static bool IsWindows7 =>
GetWindowsVersion
() == 6 && GetWindowsMinorVersion() == 1;
75
public static bool IsWindows8x =>
GetWindowsVersion
() == 6 && (GetWindowsMinorVersion() == 2 || GetWindowsMinorVersion() == 3);