Implementation of the registration module of LightCore for registration of MediatR.
PM> Install-Package MediatR.LightCore
See also the sample project for a running example.
var builder = new ContainerBuilder();
builder.RegisterModule(new MediatRModule(typeof(StartUp).Assembly));
// Register even more stuff
var container = builder.Build();
var mediator = container.Resolve<IMediator>();
PRs accepted.