3 implementations of FileChanged
Microsoft.CodeAnalysis.LanguageServer (2)
HostWorkspace\FileWatching\DefaultFileChangeWatcher.FileChangeContext.cs (1)
56public 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;
7 references to FileChanged
Microsoft.CodeAnalysis.LanguageServer (3)
HostWorkspace\LoadedProject.cs (3)
59_sourceFileChangeContext.FileChanged += SourceFileChangeContext_FileChanged; 62_projectFileChangeContext.FileChanged += ProjectFileChangeContext_FileChanged; 66_assetsFileChangeContext.FileChanged += AssetsFileChangeContext_FileChanged;
Microsoft.CodeAnalysis.LanguageServer.UnitTests (1)
DefaultFileChangeWatcherTests.cs (1)
648context1.FileChanged += (sender, path) => context1Events.Add(path);
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\ProjectSystem\FileWatchedPortableExecutableReferenceFactory.cs (1)
70fileReferenceChangeContext.FileChanged += (s, e) => _workQueue.AddWork(e);
Workspace\ProjectSystem\ProjectSystemProject.cs (1)
200_documentFileChangeContext.FileChanged += DocumentFileChangeContext_FileChanged;
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\RuleSets\VisualStudioRuleSetManager.RuleSetFile.cs (1)
70_fileChangeContext.FileChanged += IncludeUpdated;