3 instantiations of WatchedDirectory
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\ProjectSystem\FileWatchedPortableExecutableReferenceFactory.cs (1)
113
return referenceDirectories.SelectAsArray(static d => new
WatchedDirectory
(d, [".dll"]));
Workspace\ProjectSystem\ProjectSystemProject.cs (2)
226
LanguageNames.VisualBasic => [
new
(rootPath, [".vb"])],
227
LanguageNames.CSharp => [
new
(rootPath, [".cs", ".razor", ".cshtml"])],
5 references to WatchedDirectory
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\ProjectSystem\FileWatchedPortableExecutableReferenceFactory.cs (1)
74
static ImmutableArray<
WatchedDirectory
> GetAdditionalWatchedDirectories()
Workspace\ProjectSystem\IFileChangeWatcher.cs (3)
13
IFileChangeContext CreateContext(ImmutableArray<
WatchedDirectory
> watchedDirectories);
55
public static bool FilePathCoveredByWatchedDirectories(ImmutableArray<
WatchedDirectory
> watchedDirectories, string filePath, StringComparison stringComparison)
57
foreach (
var
watchedDirectory in watchedDirectories)
Workspace\ProjectSystem\ProjectSystemProject.cs (1)
215
static ImmutableArray<
WatchedDirectory
> GetWatchedDirectories(string? language, string? filePath)