Closed PrzemyslawKlys closed 3 years ago
Unfortunately nothing I can do about this. The API System.Management.Automation.StaticParameterBinder
does not report this parameter as bound.
Example:
$result = [Management.Automation.Language.StaticParameterBinder]::BindCommand(
{ Get-ChildItem -Filter 'Test' -Verbose:$false }.Ast.EndBlock.Statements[0].PipelineElements[0],
<# resolve: #> $true)
$result.BoundParameters
Returns:
Key Value
--- -----
Filter System.Management.Automation.Language.ParameterBindingResult
Converting switch with
$false
is ignoredProbably related to: https://github.com/SeeminglyScience/EditorServicesCommandSuite/issues/56