Fix in-proc debugger from continuously stopping

This commit is contained in:
Yoshi Askharoun
2025-07-29 00:07:27 -05:00
parent e79bb7d755
commit 7cba2bf1fd
@@ -45,6 +45,9 @@ public class InProcDebugger : IDebuggerClient, IDebuggerServer
void IDebuggerServer.WaitForContinue()
{
if (DebuggerCommand is InterpreterCommand.Break)
{
DebuggerCommand = InterpreterCommand.Continue;
Debugger.Break();
}
}
}