in JetBrains.HabitatDetector/src/HabitatInfo.Name.cs [74:84]
public static string GetPresentableString(JetPlatform platform)
{
return platform switch
{
JetPlatform.FreeBSD => "FreeBSD",
JetPlatform.Linux => "Linux",
JetPlatform.MacOsX => "macOS",
JetPlatform.Windows => "Windows",
_ => throw new ArgumentOutOfRangeException(nameof(platform), platform, null)
};
}