Files
ersatztv/ErsatzTV.Infrastructure/Runtime/RuntimeInfo.cs
T
Jason DoveandGitHub c02b83d0d6 code cleanup (#743)
* update tools

* run code cleanup

* update dependencies
2022-04-19 17:47:18 -05:00

10 lines
270 B
C#

using System.Runtime.InteropServices;
using ErsatzTV.Core.Interfaces.Runtime;
namespace ErsatzTV.Infrastructure.Runtime;
public class RuntimeInfo : IRuntimeInfo
{
public bool IsOSPlatform(OSPlatform osPlatform) => RuntimeInformation.IsOSPlatform(osPlatform);
}