public static string GetPresentableString()

in JetBrains.HabitatDetector/src/HabitatInfo.Name.cs [63:72]


    public static string GetPresentableString(JetClrImplementation clrImplementation)
    {
      return clrImplementation switch
        {
          JetClrImplementation.Mono => "Mono",
          JetClrImplementation.NetCore => ".NET Core",
          JetClrImplementation.NetFramework => ".NET Framework",
          _ => throw new ArgumentOutOfRangeException(nameof(clrImplementation), clrImplementation, null)
        };
    }