Gérald Barré
Gérald Barré
After updating to Coverlet 3.0.0, one of the test projects doesn't run anymore. The process is stuck at: ```` Test run for C:\Users\mezia\source\repos\Meziantou.Framework\tests\Meziantou.Framework.SingleInstance.Tests\bin\Debug\net461\Meziantou.Framework.SingleInstance.Tests.dll (.NETFramework,Version=v4.6.1) Microsoft (R) Test Execution Command Line...
### Input code ```` #nullable enable class Sample { [AllowNull] public string MyProperty { get; set; } } ```` ### Erroneous output ````csharp using System.Diagnostics.CodeAnalysis; internal class Sample { public...
````c# sb.Append(string.Join(',', new [] { "a", "b" })); ```` Should be: ````c# sb.AppendJoin(',', new [] { "a", "b" }); ````
When modifying the collection, it may be faster to do all the modifications and then raise the Reset event instead of raising lots a Add/Remove events ```` using (collection.DeferEvents()) {...
#### Bug description [VSTHRD110](https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD110.md) detects a `GetAwaiter` method is available from an extension method. However, the `GetAwaiter` method is not compatible with the actual result, so the code cannot be...
**Describe the bug** The output file is larger than the input file **To Reproduce** ```` svgo --folder .\Icons\ --multipass --eol lf ```` [input.svg](https://user-images.githubusercontent.com/509220/198497422-1a4ed4ee-ff79-4141-ac44-1cc93e03e9c2.svg) (490 bytes) [output.svg](https://user-images.githubusercontent.com/509220/198497424-3ecdefe9-465f-4831-bdc0-e9af3951ea3e.svg) (509 bytes) **Expected behavior**...
### Describe the bug Cannot install globally a .NET tool on Linux when the version contains an uppercase character ### To Reproduce Be sure to run `dotnet tool update` on...