Bari.Plugins.VCpp.VisualStudio.VcxprojSections.PropertiesSection.GetConfigurationType C# (CSharp) Method

GetConfigurationType() private method

private GetConfigurationType ( Project project ) : string
project Project
return string
        private string GetConfigurationType(Project project)
        {
            switch (project.Type)
            {
                case ProjectType.Executable:
                    return "Application";
                case ProjectType.Library:
                    return "DynamicLibrary";
                case ProjectType.StaticLibrary:
                    return "StaticLibrary";
                default:
                    throw new ArgumentOutOfRangeException();
            }
        }