Cédric Luthi

Results 226 comments of Cédric Luthi

I was working on this a few days ago. Pull request #1231 did not come out of the blue, it was a prerequisite to select the correct default database name...

> I couldn't find any documentation on the xUnit TC nuget that is available. It's here: [Testing with xUnit.net](https://dotnet.testcontainers.org/test_frameworks/xunit_net/) > * A single container is created for the entire test...

@rsgilbert xUnit.net parallelization is pretty well explained in the [Running Tests in Parallel](https://xunit.net/docs/running-tests-in-parallel) documentation. If you want to parallelize tests within a test collection, you should have a look at...

Well, after reading a bit about strong naming I think it's not worth the hassle of adding strong naming to `Serilog.Formatting.Log4Net` since it's completely ignored on .NET Core and .NET...

That's a very good point. Unfortunately I'm having trouble testing the actual source generator with the `Meziantou.Framework.ResxSourceGenerator.GeneratorTests` project. Setting a class name, for example, has no effect. ```xml ``` All...

Hey Alex, Just a quick reminder to take a look at that pull request when you get a chance. No rush, I just wanted to make sure it didn’t slip...

The [Serilog.Sinks.Elasticsearch](https://www.nuget.org/packages/Serilog.Sinks.Elasticsearch) sink is configured through an `ElasticsearchSinkOptions options` parameter. So this is how it must be configured (i.e. with an intermediate `options` object): ```json "WriteTo": [ { "Name": "Elasticsearch",...

> Usually for end-to-end tests, you write a test once and run them on all the browsers. For that you run dotnet test 3 times. That's one way to do...

Unfortunately I can't reproduce your issue. I tried to add `win-x64;linux-x64;osx-x64` in the `SqlClientSample` project and it works fine for me. Are you using Visual Studio? If yes, what exact...