2 instantiations of RuntimeManagedCodeUpdate
dotnet-watch (2)
DefaultHotReloadClient.cs (1)
171=> [.. updates.Select(static update => new RuntimeManagedCodeUpdate(update.ModuleId,
NamedPipeContract.cs (1)
76updates[i] = new RuntimeManagedCodeUpdate(moduleId, metadataDelta: metadataDelta, ilDelta: ilDelta, pdbDelta: pdbDelta, updatedTypes);
5 references to RuntimeManagedCodeUpdate
dotnet-watch (5)
DefaultHotReloadClient.cs (1)
170static ImmutableArray<RuntimeManagedCodeUpdate> ToRuntimeUpdates(IEnumerable<HotReloadManagedCodeUpdate> updates)
NamedPipeContract.cs (4)
32internal readonly struct ManagedCodeUpdateRequest(IReadOnlyList<RuntimeManagedCodeUpdate> updates, ResponseLoggingLevel responseLoggingLevel) : IUpdateRequest 36public IReadOnlyList<RuntimeManagedCodeUpdate> Updates { get; } = updates; 45foreach (var update in Updates) 67var updates = new RuntimeManagedCodeUpdate[count];