Marc Sallin

Results 4 issues of Marc Sallin

At this point, I believe this is a stable library and I am not planning for anything specific. This is not dead -- I will fix bugs as necessary and...

info

Let's discuss how we could build support for Kafka-Transactions in Silverback. An example how to do this with the .NET Kafka lib is shown here: https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/examples/Transactions/Program.cs

enhancement

I created an issue here: dotnet/msbuild#7411 We updated our .NET SDK from 6.0.102 to 6.0.200 and this breaks a certain functionality. We are a bit lost and I'm wondering if...

Hi I try to use Smock like this ``` Smock.Run(context => { context.Setup(() => DateTime.Now).Returns(DateTime.Now.AddDays(1)); context.Setup(() => DateTime.UtcNow).Returns(DateTime.UtcNow.AddDays(1)); Task myTask = Add(); myTask.RunSynchronously(); }); ``` Then I get a null...

bug