rebus-org / Rebus.Wire

:x: DEPRECATED :bus: Wire serializer for Rebus
https://mookid.dk/category/rebus
Other
2 stars 0 forks source link

Update Wire dependency #1

Closed mookid8000 closed 4 years ago

mookid8000 commented 4 years ago

The next version of Wire will most likely contain a fix for a NullReferenceException that comes when trying to deserialize stuff on .NET Core.

Checkout this PR.

When the new version is out, the Wire dependency must be updated.

allrameest commented 4 years ago

@mookid8000 have you looked at Hyperion? It seems to be a fork of Wire that is maintained by the Akka.NET team. It works well with .NET 3.1. https://github.com/akkadotnet/Hyperion https://www.nuget.org/packages/Hyperion/

mookid8000 commented 4 years ago

@allrameest thanks for the link! Rebus now has a Hyperion serializer 👉 https://github.com/rebus-org/Rebus.Hyperion

Just go

install-package rebus.hyperion

followed by

Configure.With(...)
    .(...)
    .Serialization(s => s.UseHyperion())
    .Start();

and then you'll have Hyperion-serialized messages!