VsTeXProject.VisualStudio.Project.ProjectNode.GetOutputGroupNames C# (CSharp) Method

GetOutputGroupNames() protected method

This is the list of output groups that the configuration object should provide. The first string is the name of the group. The second string is the target name (MSBuild) for that group. To add/remove OutputGroups, simply override this method and edit the list. To get nice display names and description for your groups, override: - GetOutputGroupDisplayName - GetOutputGroupDescription
protected GetOutputGroupNames ( ) : string>>.IList
return string>>.IList
        protected internal virtual IList<KeyValuePair<string, string>> GetOutputGroupNames()
        {
            return new List<KeyValuePair<string, string>>(outputGroupNames);
        }
ProjectNode