1 instantiation of SourceFileMatcher
dotnet-format (1)
Utilities\SourceFileMatcher.cs (1)
14=> new SourceFileMatcher(include, exclude);
8 references to SourceFileMatcher
dotnet-format (8)
CodeFormatter.cs (1)
113private static Workspace OpenFolderWorkspace(string workspacePath, SourceFileMatcher fileMatcher)
Commands\FormatCommandCommon.cs (1)
194formatOptions = formatOptions with { FileMatcher = SourceFileMatcher.CreateMatcher(fileToInclude, fileToExclude) };
FormatOptions.cs (2)
22SourceFileMatcher FileMatcher, 40FileMatcher: SourceFileMatcher.CreateMatcher(Array.Empty<string>(), Array.Empty<string>()),
Utilities\SourceFileMatcher.cs (1)
13public static SourceFileMatcher CreateMatcher(string[] include, string[] exclude)
Workspaces\FolderWorkspace.cs (1)
30public Solution OpenFolder(string folderPath, SourceFileMatcher fileMatcher)
Workspaces\FolderWorkspace_FolderSolutionLoader.cs (2)
16public static SolutionInfo LoadSolutionInfo(string folderPath, SourceFileMatcher fileMatcher) 45private static ImmutableArray<string> GetMatchingFilePaths(string folderPath, SourceFileMatcher fileMatcher)