Home
last modified time | relevance | path

Searched refs:IsNT6 (Results 1 – 2 of 2) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/nunit-lite/NUnitLite-1.0.0/src/framework/Internal/
H A DOSPlatform.cs327 public bool IsNT6 property in NUnit.Framework.Internal.OSPlatform
337 get { return IsNT6 && version.Minor == 0 && Product == ProductType.WorkStation; }
345 get { return IsNT6 && Product == ProductType.Server; }
353 get { return IsNT6 && version.Minor == 0 && Product == ProductType.Server; }
361 get { return IsNT6 && version.Minor == 1 && Product == ProductType.Server; }
369 get { return IsNT6 && version.Minor == 2 && Product == ProductType.Server; }
377 get { return IsNT6 && version.Minor == 1 && Product == ProductType.WorkStation; }
385 get { return IsNT6 && version.Minor == 8 && Product == ProductType.WorkStation; }
H A DPlatformHelper.cs196 isSupported = os.IsNT6; in IsPlatformSupported()