Chris Dent
Chris Dent
Puppet does not call Get-TargetResource at all. Both the dsc and dsc_lite modules use Invoke-DscResource to call Test and Set. The dsc module parses the mof file on build to...
I'm seeing the same for nuget feeds under Nexus OSS 3.38 configured as PS repositories.
It's been a bit painful trying to get this to work today. Only a limited number of fonts seem to be viable and fonts like Consolas seem to refuse to...
Huh, yes... will fix. Thanks!
So the test run... My new tests work locally when I force-load Pester 5.0.2 to ensure everything is nicely lined up. Several of the sanity tests still fail though. They're...
Could hash and cache... I don't mind putting a prototype together. On Sun, 12 Sep 2021, 19:21 vexx32, ***@***.***> wrote: > That's an interesting question... I suppose there could be...
Edit: Scratch the "related to" issue.. @SeeminglyScience suggested that it's because the value deserializes as ArrayList and therefore fails this check: ```csharp if (hash[hashkey_logname_lc] is Array) ``` https://github.com/PowerShell/PowerShell/blob/26f621952910e33840efb0c539fbef1e2a467a0d/src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs#L1048
Late, but since I know why this is. `Start-DscConfiguration` influences the LCM, all executing code is run in the context of the LCM not a current PS session. The code...
It's a legitimate issue. ```powershell ([int]::MaxValue + 200) -is [long] ``` is basically what Pester is doing. Both win PS and pwsh cause addition to yield a Double. Please may...
Default behaviour could append content of existing psm1 at the end of generated psm1. Tricky though, what might be in there. Class ordering, might be easiest to default to alphabetical...