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