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)
357var containingDirectoryMatcher = GetContainingRepositoryMatcher(fullPath, directoryTree); 370public Lazy<GitIgnore.Matcher?>? Matcher; 387AddTreeNode(treeRoot, repository.WorkingDirectory, new Lazy<GitIgnore.Matcher?>(() => repository.Ignore.CreateMatcher())); 396matcher: new Lazy<GitIgnore.Matcher?>(() => 406private static void AddTreeNode(DirectoryNode root, string workingDirectory, Lazy<GitIgnore.Matcher?> matcher) 434internal static GitIgnore.Matcher? GetContainingRepositoryMatcher(string fullPath, DirectoryNode root) 440GitIgnore.Matcher? containingRepositoryMatcher = null; 453var matcher = node.Matcher?.Value;