iRon7

Results 89 issues of iRon7

Blank UI screen (also in developer mode) **To Reproduce** 1. **Install [Visual Studio 2022](https://visualstudio.microsoft.com/)** ➔ Community ➔ .Net developing (default selections) 2. run Vault (as usual): `Vault Server -Dev` 3....

ui
dependencies

Rather than concatenating multiple hash keys, use a `CaseInsensitiveArrayEqualityCompare` Class See: [Does there exist a designated (sub)index delimiter?](https://stackoverflow.com/a/72793529/1701026)

enhancement

### Steps to reproduce These statements return an error: ```PowerShell [System.Collections.Generic.List[bool]]$False [System.Collections.Generic.List[bool]]$True [System.Collections.Generic.List[psobject]]$True [System.Collections.Generic.List[bool]]($True) $Bool = $True [System.Collections.Generic.List[bool]]$Bool ``` While these statements work fine: ```PowerShell [System.Collections.Generic.List[int]]3 [System.Collections.Generic.List[string]]'Test' [System.Collections.Generic.List[psobject]]'Test' [System.Collections.Generic.List[bool]]($True, $True)...

Issue-Bug
WG-Engine
Up-for-Grabs

PowerShell allows for unquoted strings as shown in the [Style-Guide/Naming-Conventions](https://poshcode.gitbooks.io/powershell-practice-and-style/Style-Guide/Naming-Conventions.html): ```PowerShell # Instead write: Get-Content -Path (Join-Path -Path $PSScriptRoot -ChildPath README.md) ``` But there are limitations to using unquoted strings...

Currently the `Edit-DTWBeautifyScript` cmdlet doesn't support relative file paths. As I sometimes have quite long paths to deal with, I would like to be able refer to the input and...

Hello Dan, Your project is great! I would like to give you some feedback about some styles which I think should be different but before going into detail, I would...

Not sure whether this is a valid request but trying it anyway 😀. We are noticing quiet some loading time for `import-module pspki` in our environment. Currently it is 12...

Although issue #1031 and #1129 probably have the same cause, I have added a new bug report as it is (afaik) not directly related to the `Begin`, `Process` and `End`...

Issue - Enhancement
Area - Engine
Area - PSUseDeclaredVarsMoreThanAssignments

Just a heads up: In the (near?) future, dictionary keys are going to support the `IList` interface. This would mean that e.g. `@($Dictionary.Keys)[0]` can be simplified to `$Dictionary.Keys[0]`. see: [`#15843`...

Issue - Enhancement
Up-for-Grabs
Area - CompatibilityRules

Referring to StackOverflow questions along with: [How do I automaticaly create and use variable names?](https://stackoverflow.com/q/68827910/1701026). The cmdlets: * [`Get-Variable`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-variable) * [`Set-Variable`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/set-variable) * [`New-Variable`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/new-variable) Could completely mislead a novice PowerShell scripter...

Issue - New Rule
Up-for-Grabs
Area - Rules