private static string FormatDebugInfoType()

in jet-symbols/src/JetBrains.CommandLine.Symbols/GetPdbTypeCommand.cs [47:62]


        private static string FormatDebugInfoType(DebugInfoType debugInfo)
        {
            switch (debugInfo)
            {
                case DebugInfoType.Windows:
                    return "windows";
                case DebugInfoType.Portable:
                    return "portable";
                case DebugInfoType.EmbeddedPortable:
                    return "embeddedPortable";
                case DebugInfoType.Deterministic:
                    return "deterministic";
                default:
                    return debugInfo.ToString();
            }
        }