We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7fed8 commit 9f57035Copy full SHA for 9f57035
src/Components/WebAssembly/WebAssembly/src/HotReload/HotReloadAgent.cs
@@ -118,6 +118,13 @@ public void ApplyDeltas(IEnumerable<UpdateDelta> deltas)
118
{
119
foreach (var delta in deltas)
120
121
+ if (delta.MetadataDelta.Length == 0)
122
+ {
123
+ // When the debugger is attached the delta is empty.
124
+ // The client only calls to trigger metadata update handlers.
125
+ continue;
126
+ }
127
+
128
Reporter.Report($"Applying delta to module {delta.ModuleId}.", AgentMessageSeverity.Verbose);
129
130
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
0 commit comments