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

LoadNonBuildInformation() protected method

For flavored projects which implement IPersistXMLFragment, load the information now
protected LoadNonBuildInformation ( ) : void
return void
        protected internal virtual void LoadNonBuildInformation()
        {
            IPersistXMLFragment outerHierarchy = HierarchyNode.GetOuterHierarchy(this) as IPersistXMLFragment;
            if (outerHierarchy != null)
            {
                this.LoadXmlFragment(outerHierarchy, null);
            }
        }
ProjectNode