PowerShell / WindowsCompatibility

Module that allows Windows PowerShell Modules to be used from PSCore6
Other
137 stars 33 forks source link

fixing issue-63 #75

Open Medve01 opened 5 years ago

Medve01 commented 5 years ago

Maybe not the best fix, but it helps to use it with Visual Studio Code

msftclas commented 5 years ago

CLA assistant check
All CLA requirements met.

mikejwhat commented 4 years ago

I ran into this too. If you coerce on the right hand side instead the issue goes away. i.e. $verboseFlag = [bool] $PSBoundParameters['Verbose'] instead of [bool] $verboseFlag = $PSBoundParameters['Verbose']

mikejwhat commented 4 years ago

How does this fix issue 63 though?