7 references to HotReloadFileChangeKind
Microsoft.CodeAnalysis.ExternalAccess.HotReload (3)
Api\HotReloadMSBuildWorkspace.cs (3)
149
public async ValueTask<Solution> UpdateFileContentAsync(IEnumerable<(string path,
HotReloadFileChangeKind
change)> changedFiles, CancellationToken cancellationToken)
158
Contract.ThrowIfTrue(change ==
HotReloadFileChangeKind
.Add);
161
if (change ==
HotReloadFileChangeKind
.Delete)
Microsoft.DotNet.HotReload.Watch (4)
FileWatcher\ChangeKind.cs (4)
17
public static
HotReloadFileChangeKind
Convert(this ChangeKind changeKind) =>
20
ChangeKind.Update =>
HotReloadFileChangeKind
.Update,
21
ChangeKind.Add =>
HotReloadFileChangeKind
.Add,
22
ChangeKind.Delete =>
HotReloadFileChangeKind
.Delete,