in JetBrains.HabitatDetector/src/HabitatInfo.Name.cs [11:21]
public static string GetRuntimeIdName(JetPlatform platform)
{
return platform switch
{
JetPlatform.FreeBSD => "freebsd",
JetPlatform.Linux => "linux",
JetPlatform.MacOsX => "macos",
JetPlatform.Windows => "windows",
_ => throw new ArgumentOutOfRangeException(nameof(platform), platform, null)
};
}