Microsoft.VisualStudio.Project.ProjectNode.SetAggregateProjectTypeGuids C# (CSharp) Method

SetAggregateProjectTypeGuids() public method

Set the list of GUIDs that are aggregated together to create this project.
public SetAggregateProjectTypeGuids ( string projectTypeGuids ) : int
projectTypeGuids string Semi-colon separated list of GUIDs, the last one is usually the project factory of the base project factory
return int
        public int SetAggregateProjectTypeGuids(string projectTypeGuids)
        {
            this.SetProjectProperty(ProjectFileConstants.ProjectTypeGuids, projectTypeGuids);
            return VSConstants.S_OK;
        }
ProjectNode