3 implementations of FileChanged
Microsoft.CodeAnalysis.LanguageServer (2)
HostWorkspace\FileWatching\DefaultFileChangeWatcher.FileChangeContext.cs (1)
50public event EventHandler<string>? FileChanged;
HostWorkspace\FileWatching\LspFileChangeWatcher.cs (1)
130public event EventHandler<string>? FileChanged;
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\FileChangeWatcher.cs (1)
421public event EventHandler<string>? FileChanged;
10 references to FileChanged
Microsoft.CodeAnalysis.LanguageServer (3)
HostWorkspace\LoadedProject.cs (3)
60_sourceFileCreatedOrDeletedChangeContext.FileChanged += SourceFileCreatedOrDeletedChangeContext_FileChanged; 66_projectFileChangeContext.FileChanged += ProjectFileChangeContext_FileChanged; 71_assetsFileChangeContext.FileChanged += AssetsFileChangeContext_FileChanged;
Microsoft.CodeAnalysis.LanguageServer.UnitTests (3)
DefaultFileChangeWatcherTests.cs (2)
418context.FileChanged += (sender, path) => 845context1.FileChanged += (sender, path) => context1Events.Add(path);
FileBasedProgramsWorkspaceTests.cs (1)
842fileChangeContext.FileChanged += (_, path) =>
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\ProjectSystem\FileWatchedPortableExecutableReferenceFactory.cs (1)
70fileReferenceChangeContext.FileChanged += (s, e) => _workQueue.AddWork(e);
Workspace\ProjectSystem\ProjectSystemProject.cs (2)
200_documentFileChangeContext.FileChanged += DocumentFileChangeContext_FileChanged; 1390_documentFileChangeContext.FileChanged -= DocumentFileChangeContext_FileChanged;
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\RuleSets\VisualStudioRuleSetManager.RuleSetFile.cs (1)
70_fileChangeContext.FileChanged += IncludeUpdated;