Adam Sitnik
Adam Sitnik
System.CommandLine (the parser) ignores case by default when parsing `Enums`: https://github.com/dotnet/command-line-api/blob/6c8c9b06e56e4c09c33942f62eb5ad4a9c9ca445/src/System.CommandLine/Binding/ArgumentConverter.cs#L57-L64 But dotnet/format asks it explicitly to accept only values from the provided list: https://github.com/dotnet/format/blob/df983b3c7d71bddf12d54153a268db37ea7cb312/src/Commands/FormatCommandCommon.cs#L99 And in such case it's...
I've created a new issue: https://github.com/dotnet/command-line-api/issues/2254
> Well... Of course it's possible but I think it goes against current targeting design when v X.* versions of packages are targeted at v X.* version of NET. If...
I've introduced this bug in 7.1.0 and I am afraid that it's still a thing with 8.0.0. The options instance is cached by capturing it in a closure; https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/blob/73abc7a094f9ef625b83455898a21d22d2fa6a82/src/HealthChecks.NpgSql/DependencyInjection/NpgSqlHealthCheckBuilderExtensions.cs#L74-L79 the...
I am going to think out loud here. 1. Each health check package depends on `Microsoft.Extensions.DependencyInjection` (and maybe some other Microsoft.Extensions packages) and the client library package(s). The first follow...
Hello @roji ;) I want to make sure that I understand you correctly. So you have sth like the code below: ```cs class OpenConnectionBenchmark { [Benchmark] void Benchmark() {} }...
The best thing I can do as of today is to mark it as up-for-grabs and hope that someone is going to pick it up. The contributor who is willing...
> I'm going to fix up the broken image URLs Please excuse me for pushing the absolute urls (my son woke me up at 3:30 AM and my brain was...
@timcassell that is correct, thanks for catching it! fixed with https://github.com/dotnet/BenchmarkDotNet/pull/2209 in 0.13.3
I've observed similar CI issues in the past in other projects. What is unique about most CI machines is that they have only one or two cores, so getting into...