rdt-client/server/RdtClient.Service.Test/Helpers/OSHelper.cs

8 lines
206 B
C#

using System.Runtime.InteropServices;
namespace RdtClient.Service.Test.Helpers;
public static class OSHelper
{
public static Boolean IsLinux => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
}