Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 268 Bytes

MA0144.md

File metadata and controls

9 lines (6 loc) · 268 Bytes

MA0144 - Use System.OperatingSystem to check the current OS

Use System.OperatingSystem to check the current OS instead of RuntimeInformation.

RuntimeInformation.IsOSPlatform(OSPlatform.Windows); // non-compliant

OperatingSystem.IsWindows(); // ok