Martin Othamar
Martin Othamar
Hmm I did not realize we would end up having completely different pipelines (I would not have asked the pipeline ordering question if I had realized that). This feels like...
Hey, sorry, been busy trying to wrap up work for 3.1.. This PR will go into v4 (breaking changes). We need to give 3.1 some time to stabilize at it...
I'm not sure, it might be due to where `AddMediator` is called (which project). If the project where you call `AddMediator` doesn't have a direct or indirect reference to the...
Going from the title, I think it is possible to design a modular monolith with this library (multiple frontends, mixed deployement), but where it might get tricky is if you...
Hey, just had a look at that project - One of the requests inherited multiple interfaces, just removed that (there was a warning diagnostic) - Api1 is basically fine -...
Yes I think that should still work, if I understand you correctly.. I just tested by having the `Request2Handler` simply `Send(new Request1)` to let the `Request1Handler` do the work (meaning...
[MediatorPOC.zip](https://github.com/user-attachments/files/23567176/MediatorPOC.zip)
@dsolteszopyn > I have everything working besides 1 issue I found which i think it's a bug in the generator. The core issue is that the source generator is not...
@dsolteszopyn > Would be nice to just add MediatorOption to IncludeTypesForGeneration I think this is already supported? Through `options.Assemblies = [typeof(...)];`
@ynanech > I recommend decoupling the global configuration of IMediator/ISender/IPublisher (i.e., AddMediator()) from the source generator, so that the host project explicitly invokes it. Meanwhile, the source generator should only...