Justin Grote
Justin Grote
```ps $Role = [pscustomobject]@{ DisplayName = 'thing' accessPackageResourceScopes = [pscustomobject]@{ DisplayName = 'nestedthing' } } $Role Wait-Debugger ```  The latter watch expression should return null
PR to follow to clean up a lot of these compiler warning errors ``` c:\Users\JGrote\Projects\PowerShellEditorServices\src\PowerShellEditorServices\Services\DebugAdapter\Handlers\DebugEvaluateHandler.cs(50,17): warning CS4014: Because this call is not awaited, execution of the current method continues before...
 Per @SeeminglyScience it's probably because the ToString is trying to marshal to the pipeline thread and deadlocking.
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...

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...
@robotechredmond [sql-alwayson-md-ilb-zones](https://github.com/Azure/azure-quickstart-templates/tree/master/demos/sql-alwayson-md-ilb-zones) ### Issue Details The current GPLv3 license means that private companies can't take this demo template and adapt it to their internal needs without releasing the code, which...
Currently if you want to install a previous version, scoop tries to autogenerate a manifest to see if it works, however there may be breaking changes between versions in the...
https://github.com/shilangyu/scoop-search has changed my experience with scoop, the slow search has always been one of my pain points as a user. I'd be willing to PR improvement to the search...
## Summary of the feature request A common flow I have when doing multiple "Should" in a test looks like: ```powershell $myresult = Invoke-MyCommand $myresult | Should -BeOfType [String] $myresult...