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

AddIndependentFileNode() private method

Add an item to the hierarchy based on the item path
private AddIndependentFileNode ( Microsoft.Build.Evaluation item ) : HierarchyNode
item Microsoft.Build.Evaluation Item to add
return HierarchyNode
        private HierarchyNode AddIndependentFileNode(MSBuild.ProjectItem item)
        {
            HierarchyNode currentParent = GetItemParentNode(item);
            return AddFileNodeToNode(item, currentParent);
        }
ProjectNode