Rasmus Hansen

Results 56 comments of Rasmus Hansen

Sadly I don't know anything about how Ionic loads resources. The path you are loading should be the output path of the file, however ionic does that.

> Hi there, sorry for not replying sooner 😅 It is definitely an interesting approach, but I'm thinking that maybe it could be "upgraded" a bit and formalized as a...

Just took a quick look at the implementation. It probably needs to clear the header when passing the message to the error queue, otherwise simple retrying by using the Rabbit...

This is actually supported now, so i'm closing this :)

Just a note, there is already an OTEL package for Rebus: https://github.com/rebus-org/Rebus.OpenTelemetry :) Though I would be all for moving it in core now that Otel is becoming more and...

As a workaround, i have done this in `OnModelCreating`: ```c# protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); AddManualListComparer(modelBuilder); AddManualListComparer(modelBuilder); AddManualListComparer(modelBuilder); } private static void AddManualListComparer(ModelBuilder modelBuilder) { foreach (var type...