Microsoft.VisualStudio.Project.ProjectNode.LoadNonBuildInformation C# (CSharp) 메소드

LoadNonBuildInformation() 보호된 메소드

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