2 instantiations of DirectoryNode
Microsoft.Build.Tasks.Git (2)
12 references to DirectoryNode
Microsoft.Build.Tasks.Git (12)
GitOperations.cs (12)
349var directoryTree = BuildDirectoryTree(repository, repositoryFactory);
367public readonly List<DirectoryNode> OrderedChildren;
372public DirectoryNode(string name, List<DirectoryNode> orderedChildren)
382internal static DirectoryNode BuildDirectoryTree(GitRepository repository, Func<GitEnvironment, string, GitRepository?> repositoryFactory)
386var treeRoot = new DirectoryNode(name: "", new List<DirectoryNode>());
406private static void AddTreeNode(DirectoryNode root, string workingDirectory, Lazy<GitIgnore.Matcher?> matcher)
410var node = root;
421var newNode = new DirectoryNode(segments[i], new List<DirectoryNode>());
434internal static GitIgnore.Matcher? GetContainingRepositoryMatcher(string fullPath, DirectoryNode root)
442var node = root;