PetSerAl
PetSerAl
This [test](https://github.com/PowerShell/PowerShell-Tests/blob/83ec2c1204f33093c5589404483db578e5132f3b/engine/Other/Pester.Engine.Other.InformationStream.Tests.ps1#L16) have two issues: - If you want to use `$InformationPreference` variable, then you should not use `-InformationAction` parameter. - The value `Ignore` is not supported for an `ActionPreference`...
**Input:** ```csharp string.Join(' ', (int[])[000000000000000000000000000000, 000000000000000000000000000000, .. Enumerable.Empty()]); ``` **Output:** ```csharp string.Join( ' ', (int[]) [ 000000000000000000000000000000, 000000000000000000000000000000, .. Enumerable.Empty(), ] ); ``` **Expected behavior:** ```csharp string.Join( ' ', (int[])...
### Is your feature request related to a problem? Please describe. Avalonia template include conditional package `Avalonia.Diagnostics` with `Condition` attribute directly on `PackageReference` element. https://github.com/AvaloniaUI/avalonia-dotnet-templates/blob/43c5d489827688e412c98722ba1963039c66e9a5/templates/csharp/app/AvaloniaAppTemplate.csproj#L18-L19 Such approach is not friendly...