1 instantiation of Matcher
Microsoft.Build.Tasks.Git (1)
GitDataReader\GitIgnore.cs (1)
97=> new Matcher(this);
9 references to Matcher
Microsoft.Build.Tasks.Git (9)
GitDataReader\GitIgnore.cs (1)
96public Matcher CreateMatcher()
GitOperations.cs (8)
356var containingDirectoryMatcher = GetContainingRepositoryMatcher(fullPath, directoryTree); 369public Lazy<GitIgnore.Matcher?>? Matcher; 386AddTreeNode(treeRoot, repository.WorkingDirectory, new Lazy<GitIgnore.Matcher?>(() => repository.Ignore.CreateMatcher())); 395matcher: new Lazy<GitIgnore.Matcher?>(() => 405private static void AddTreeNode(DirectoryNode root, string workingDirectory, Lazy<GitIgnore.Matcher?> matcher) 433internal static GitIgnore.Matcher? GetContainingRepositoryMatcher(string fullPath, DirectoryNode root) 439GitIgnore.Matcher? containingRepositoryMatcher = null; 452var matcher = node.Matcher?.Value;