FFMpegCore/FFMpegCore.Test/Utilities/OperatingSystemUtils.cs

11 lines
241 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
namespace FFMpegCore.Test.Utilities;
public static class OperatingSystemUtils
{
public static bool NotWindows()
{
return !RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
}
}