Bari.Plugins.Fsharp.VisualStudio.FsprojSections.PropertiesSection.GetOutputType C# (CSharp) Method

GetOutputType() private method

private GetOutputType ( ProjectType type ) : string
type ProjectType
return string
        private string GetOutputType(ProjectType type)
        {
            switch (type)
            {
                case ProjectType.Executable:
                    return "Exe";
                case ProjectType.WindowsExecutable:
                    return "WinExe";
                case ProjectType.Library:
                    return "Library";
                default:
                    throw new ArgumentOutOfRangeException("type");
            }
        }