Cédric Luthi

Results 226 comments of Cédric Luthi

Here's the small program I wrote to diagnose the `AssignCulture` task. **assignculture.csproj** ```xml Exe net5.0 ``` **Program.cs** ```csharp using System; using System.Globalization; using System.Linq; using System.Runtime.InteropServices; using Microsoft.Build.Framework; using Microsoft.Build.Tasks;...

Well, it turns out I just re-discovered a known MSBuild issue apparently: https://github.com/dotnet/msbuild/issues/3897

With GitHub actions I'm setting the `Configuration` environment variable to `Release` to make sure that all (build, test, pack) commands are performed with the release configuration: https://github.com/serilog-contrib/serilog-formatting-log4net/blob/70cee806736f99604d36c4470fed798b842c346f/.github/workflows/continuous-integration.yml#L6-L7 (I'm also setting...

I just opened #139 which will solve the publishing issue. But publishing only `EntityFrameworkCore.Jet.Data` 7.0.0 now that the other 3 NuGet packages are successfully published might be tricky with the...

Indeed, I had **Microsoft Access database engine 2010** installed but the 2016 version was required to overcome this error. ![image](https://github.com/bubibubi/EntityFrameworkCore.Jet/assets/51363/39ad8ae5-00f4-4e7a-bd14-6bdb9e7c84a9)

Note: this pull request will be really useful when https://github.com/HangfireIO/Hangfire/pull/2146 will also be merged.

Now that Hangfire 1.8 is released it might be worth considering.

Serilog has a space and some rules for community-driven projects: [Serilog Contrib](https://github.com/serilog-contrib/home). It is described as a _hub of community supported extensions for [Serilog](https://serilog.net/) to help with discovery and collaboration_....

Excellent point! It did not even come to my mind that the lifetime implementation could be shared. I have done it in c20188e0938ffc9e88b413c4ccf933a329ad71f0 with a new `ContainerLifetime` base class used...

I’m pretty happy with the current implementation. I have another branch (`feature/Testcontainers.Xunit+samples`) on top of this one where I started using the new package for Testcontainers own tests. Currently I...