Dominik Janiec
Dominik Janiec
@ChrisMaddock thank you and yes, my main issue is sort of duplicate of #1381, however both `ConsoleRunner` and `VS-Adapter` behave similarly and in the same time differently then described at:...
Strangely, everything passed 😕 Maybe, `7.2` does not support `$PSNativeCommandArgumentPassing` at all. Nonetheless, next commit solved problems on my machine 😅
I hope, this will be useful, once workflows would run on `PowerShell 7.3`
Nice, I saw similar distribution of times related to "dot-sourcing" respective files. ---- In the matter of separated modules with different set of bundled code. I think, this could be...
If anyone is interested in such feature, I've explored that possibility at my fork, which I would like to bring here too in some near feature with #948: * https://github.com/DominikJaniec/posh-git/tree/feature/no-prompt...
That's true, the whole `PowerShell` startup is very slow 😕 However, I'm kind of passing by that issue, with something like _"startup-log"_, which tricks my brain to not feel the...
I've had found that behavior of `-ForEach @($null)` is even more unexpected, when it happens within `InModuleScope` 😕, as it looks like the `$_` is not provided at all. ----...
Thanks for very fast response 🙂 I'm not sure if I understood you correctly, in regard to `InModuleScope` case, but other values from `-ForEach` are provided correctly. As in my...
PS / Off Topic: I've learned one strange thing with PowerShell itself today 😕, as I was writing the comment above, and wanted to have `$true` as one of the...
Thanks for your detailed explanation 🙂 Yes, I've made that workaround too, and I think that using items like: ```powershell @{ Tested = $whatever; What = "useful and human-readable" }...