* sync plex platform and platform version * fix mixed-platform path replacements
11 lines
288 B
C#
11 lines
288 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);
|
|
}
|
|
}
|