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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The debugger in the async pipeline consumer is implemented, but is not yet hooked up to the UI.
This is done by sending messages back to the client to ensure it's kept in sync with VSCode.
Most of these are done with the debug adapter protocol, but we still need be able to start and stop the debugger from the server.
The key is for us to make sure the client debugger is active when the debugger stops. That's done today like this:
PowerShellEditorServices/src/PowerShellEditorServices/Services/PowerShellContext/PowerShellContextService.cs
Lines 2417 to 2420 in 9e1a17a
We'll need to implement that here:
PowerShellEditorServices/src/PowerShellEditorServices/Services/PowerShell/Host/EditorServicesConsolePSHost.cs
Lines 298 to 311 in a0a8df1
Note that I've already tried simply putting this in, but it doesn't just work, so needs to be debugged and worked through
The text was updated successfully, but these errors were encountered:
Fixed in #1574
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
The debugger in the async pipeline consumer is implemented, but is not yet hooked up to the UI.
This is done by sending messages back to the client to ensure it's kept in sync with VSCode.
Most of these are done with the debug adapter protocol, but we still need be able to start and stop the debugger from the server.
The key is for us to make sure the client debugger is active when the debugger stops. That's done today like this:
PowerShellEditorServices/src/PowerShellEditorServices/Services/PowerShellContext/PowerShellContextService.cs
Lines 2417 to 2420 in 9e1a17a
We'll need to implement that here:
PowerShellEditorServices/src/PowerShellEditorServices/Services/PowerShell/Host/EditorServicesConsolePSHost.cs
Lines 298 to 311 in a0a8df1
Note that I've already tried simply putting this in, but it doesn't just work, so needs to be debugged and worked through
The text was updated successfully, but these errors were encountered: