private static void ProcessSlnRootNode(RootNode rootNode)
 {
     var projectLinks = new SolutionFileManager().FindAllProjectLinks(rootNode);
     ProcessLinks(projectLinks, rootNode);
 }
Exemple #2
0
        private void ProcessSlnRootNode(RootNode rootNode, bool includeExternalReferences)
        {
            var projectLinks = SolutionFileManager.FindAllProjectLinks(rootNode);

            ProcessLinks(rootNode.ChildProjects, projectLinks, includeExternalReferences);
        }
        private static void ProcessSlnRootNode(RootNode rootNode, bool includeExternalReferences)
        {
            var projectLinks = new SolutionFileManager().FindAllProjectLinks(rootNode);

            ProcessLinks(projectLinks, rootNode, includeExternalReferences);
        }