mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
11 lines
241 B
C#
11 lines
241 B
C#
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace FFMpegCore.Test.Utilities;
|
|||
|
|
|||
|
public static class OperatingSystemUtils
|
|||
|
{
|
|||
|
public static bool NotWindows()
|
|||
|
{
|
|||
|
return !RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
|
|||
|
}
|
|||
|
}
|