Lachee / discord-rpc-csharp

C# custom implementation for Discord Rich Presence. Not deprecated and still available!
MIT License
561 stars 93 forks source link

Properly tell macOS from UNIX starting from .NET Core #217

Closed KaKusaOAO closed 1 year ago

KaKusaOAO commented 1 year ago

On .NET Core, Environment.OSVersion.Platform on macOS now returns PlatformID.Unix instead of PlatformID.MacOSX.

To fix this issue, I'm using RuntimeInformation.IsOSPlatform(OSPlatform.OSX) to tell macOS from Unix.