Microsoft.VisualStudio.Project.ProjectNode.SetAggregateProjectTypeGuids C# (CSharp) Méthode

SetAggregateProjectTypeGuids() public méthode

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
Résultat int
        public int SetAggregateProjectTypeGuids(string projectTypeGuids)
        {
            this.SetProjectProperty(ProjectFileConstants.ProjectTypeGuids, projectTypeGuids);
            return VSConstants.S_OK;
        }
ProjectNode