PowerShellEditorServices
PowerShellEditorServices copied to clipboard
A common platform for PowerShell development support in any editor or application!
Just thought I'd throw this discussion point out there. If we know by the AST that someone is doing foreach -parallel, we are going to know the behavior. Can we...

We have a kind of primitive stab at a method to clean up a faulty runspace state in the PSES pipeline thread consumer here: https://github.com/PowerShell/PowerShellEditorServices/blob/9fd0dfa58438a9ba2b2d3cdfe22cd9cad5df70b0/src/PowerShellEditorServices/Services/PowerShell/Host/PsesInternalHost.cs#L784-L826 We need to induce a...
Hi, Not sure is an issue or I doing something wrong... I am trying to kickoff POC project to integrate PSES into Visual Studio. Before starting to work on extension...
Fix Windows PowerShell test host so that it's debuggable. _Originally posted by @andschwa in https://github.com/PowerShell/PowerShellEditorServices/pull/1635#discussion_r771590436_
The `System.Diagnostics.Process` has many more properties than this:  Repro with: ``` powershell $proc = Get-Process PowerShell ``` And inspect `$proc` in the Variables window.
Enter-PSHostProcess debugging is both an essential form of debugging, but also essential for PowerShell Azure Functions Host support. Because of PowerShell's quirks, we have to do special things to support...
Because the pipeline thread consumer is single-threaded and runs tasks sequentially, there's the real possibility that a single bad task could starve it. For now, Ctrl+C *should* cancel whatever task...
Currently, regions are just treated as comments, and thus the new built-in bracket colorizer fails to recognize them as sections. Changing their tokens to non-comments will allow them to be...
Let's remove all the usages of `dynamic` so we don't have to depend on the `Microsoft.CSharp` nuget package. `dynamic` is very "against the typical rules" anyway.