We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99180d commit d864c89Copy full SHA for d864c89
src/PowerShellEditorServices/Services/DebugAdapter/Handlers/ConfigurationDoneHandler.cs
@@ -160,7 +160,8 @@ await _executionService.ExecutePSCommandAsync(
160
CancellationToken.None,
161
s_debuggerExecutionOptions).ConfigureAwait(false);
162
163
- _debugAdapterServer?.SendNotification(EventNames.Terminated);
+ //_debugAdapterServer?.SendNotification(EventNames.Terminated);
164
+ _debugAdapterServer?.SendNotification(EventNames.LoadedSource); // WORKAROUND: Don't stop VSCode debugger after script execution
165
}
166
167
0 commit comments