This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpToolLib/PlatformCheck.cs
2020-04-08 16:32:16 +02:00

17 lines
420 B
C#

using System;
using System.Linq;
namespace UpToolLib
{
public static class PlatformCheck
{
public static bool IsWindows => new[]
{
PlatformID.Xbox, PlatformID.Win32S, PlatformID.Win32Windows, PlatformID.Win32NT,
PlatformID.WinCE
}
.Contains(Environment.OSVersion.Platform);
public static bool IsPosix => !IsWindows;
}
}