Cédric Luthi

Results 226 comments of Cédric Luthi

Absolutely! Should probably be `ReadHiddenCells` instead of `ReadHiddenRows`. Would you be interested in a pull request?

> As a work around I've just added references to all sinks we are using to all projects. You should probably do what @nblumhardt suggested instead, i.e. passing explicit assemblies...

@rcdailey You might use this `RedirectionFriendlyConsole` class to workaround your issue. ```csharp using System; using System.IO; using System.Text; using Spectre.Console; namespace SampleCode; public static class RedirectionFriendlyConsole { public static IAnsiConsole...

All checks are ✅ and the change to the public API signature has been reverted. Is there any chance to merge this?

I have already opened a pull request a while ago that covers this topic, was discussed and is fully covered with unit tests: #8254 I just rebased it on the...

This one is a little different as it operates on `IEnumerable` rather than `IQueryable`. I'd still simplify it to this (also renaming `ApplyFilters` simply into `Where`) and, as already mentioned,...

Good point. Should I implement the additional properties as part of this pull request or should it be done in a followup pull request?

I went ahead and implemented properties for _all_ optional claims defined in RFC 7662.

Addendum: the workaround does not work the first time the `dotnet restore ...` command is run. It only works the second time, when a restore has already been previously performed.