You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I experienced a few issues using this package on a Blazor WASM net6.0 solution.
In the end I found that https://www.nuget.org/packages/Caliburn.Micro.Core/ is current and contains an updated version of the EventAggregator which is working fine in my solution (Blazor.EventAggregator is based on an older version of Caliburn).
@peranborkett How are you finding the Pub/Sub pattern in Blazor? I am currently using Fluxor but I've been thinking about replacing it with the pub/sub as I used the CaliburnMicro event Aggregator in an MVVM project and loved it. I'd be interested in getting your feedback about it.
Just a note for anyone else...
I experienced a few issues using this package on a Blazor WASM net6.0 solution.
In the end I found that https://www.nuget.org/packages/Caliburn.Micro.Core/ is current and contains an updated version of the EventAggregator which is working fine in my solution (Blazor.EventAggregator is based on an older version of Caliburn).
builder.Services.AddScoped<Caliburn.Micro.IEventAggregator, Caliburn.Micro.EventAggregator>();
_eventAggregator.SubscribeOnPublishedThread(this);
await _eventAggregator.PublishOnCurrentThreadAsync(new MyMessage())
The text was updated successfully, but these errors were encountered: