Justin Grote

Results 274 issues of Justin Grote

```ps $Role = [pscustomobject]@{ DisplayName = 'thing' accessPackageResourceScopes = [pscustomobject]@{ DisplayName = 'nestedthing' } } $Role Wait-Debugger ``` ![image](https://user-images.githubusercontent.com/15258962/153964608-c3cd2f1b-ea85-4b84-a8c6-4f22dd731cb3.png) The latter watch expression should return null

Issue-Bug
Area-Debugging

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...

![image](https://user-images.githubusercontent.com/15258962/151281274-b443b5f7-c8f3-47e4-abf4-298a17384a98.png) Per @SeeminglyScience it's probably because the ToString is trying to marshal to the pipeline thread and deadlocking.

Issue-Bug
Area-Debugging

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...

Issue-Discussion
Area-Debugging

![image](https://user-images.githubusercontent.com/15258962/151021478-1b4af608-c899-4e49-8a5a-d704822cc6ad.png)

Issue-Enhancement
Area-Code Navigation

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...

Issue-Enhancement
Area-IntelliSense

@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...

Feature