Adam Hathcock
Adam Hathcock
Tar is coming to .NET 7 and the API design is roughly based on SharpCompress 🥳 https://github.com/dotnet/runtime/issues/65951#issuecomment-1057457629 Hopefully this means the Reader interface can directly wrap this implementation and rework...
- Use ReadAsync/WriteAsync on every stream - Use CancelationToken (drop Listener interface?) - Use ValueToken (need to find better Task.Completed version) - Use IAsyncDisposable (drop IDispose as it mostly doesn't...
For https://github.com/adamhathcock/sharpcompress/issues/432
Need to use async IO now. Guidance for ASP.NET spells it out: https://docs.microsoft.com/en-us/aspnet/core/performance/performance-best-practices Look to where ValueTask can be used
Need to modernize more as I'm doing professionally.
Right now, the tool assumes there is only one path. However, you can do the following: `dotnet restore "src/" "test/"` which is just a list of paths to restore. I'll...
Thanks for this, I'm using this now on a .NET Core 3 project and seems like it's working! I was attempting to use Money.TryParse which always uses Currency.CurrentCurrency which always...
Adding a new method to feel slightly cleaner when testing if an enum can be dehumanized. Addresses https://github.com/Humanizr/Humanizer/issues/769