Cédric Luthi
Cédric Luthi
> I would not touching `Microsoft.Bcl.TimeProvider`. Proposal 1. doesn't touch it, only targets .NET 8. > I would add serilog's own time abstraction (like `TimeProvider` one but interface and with...
> To prevent tests from running forever, you can pass a cancellation token. Yes that's true but the _default_ behaviour here matters a lot here I think. Maybe the simplest...
Could you please elaborate on what are the advantages of using a Docker container over directly using one of the many available SQLite libraries such as [Microsoft.Data.Sqlite](https://www.nuget.org/packages/Microsoft.Data.Sqlite), [SQLite-net](https://www.nuget.org/packages/sqlite-net-pcl) or [System.Data.SQLite](https://www.nuget.org/packages/System.Data.SQLite)?
I'm not sure in what exact version of the SDK this was fixed but I confirm that the staircases are gone with the dotnet SDK 8.0.204.
I recently used the extensions in an actual project to test an [ISpanFormattable](https://learn.microsoft.com/en-us/dotnet/api/system.ispanformattable) implementation and realized something is not yet quite right. 😕 Here's the test I wrote: ```csharp [Theory]...
I think using [ConfigureAppConfiguration](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.hosting.ihostbuilder.configureappconfiguration) is the right thing to do: > Sets up the configuration for the remainder of the build process and application. This can be called multiple times...
I have started working on this issue on my [FormatProvider](https://github.com/0xced/serilog-settings-configuration/tree/FormatProvider) branch. But I also have pull request #347 which is currently in progress. This pull request already adds a parameter...
Also, while we are talking about potential breaking changes, I'd argue that the default format provider should be changed from `CultureInfo.CurrentCulture` to `CultureInfo.InvariantCulture`. Why? Because the `Microsoft.Extensions.Configuration.Json` package reads numbers...
Yes, this is correct, having both `src` and `build` directories under a common parent _root_ directory works fine.
Official SQLite documentation for reference: [Using the SQLite Online Backup API](https://www.sqlite.org/backup.html).