6 references to AllChangesApplied
dotnet-watch (6)
DefaultHotReloadClient.cs (3)
222(applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.AllChangesApplied; 237return ApplyStatus.AllChangesApplied; 267(appliedUpdateCount < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.AllChangesApplied;
HotReloadClients.cs (1)
145case ApplyStatus.AllChangesApplied:
WebAssemblyHotReloadClient.cs (2)
99return ApplyStatus.AllChangesApplied; 126return (!anySuccess && anyFailure) ? ApplyStatus.Failed : (applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.AllChangesApplied;