Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.31 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.31 KB

standard-readme compliant NuGet package Maintainability

MediatR.LightCore

Implementation of the registration module of LightCore for registration of MediatR.

Install

PM> Install-Package MediatR.LightCore

Usage

See also the sample project for a running example.

RegisterModule

var builder = new ContainerBuilder();
builder.RegisterModule(new MediatRModule(typeof(StartUp).Assembly));

// Register even more stuff

var container = builder.Build();
var mediator = container.Resolve<IMediator>();

Contributing

PRs accepted.

License

MIT License © Jürgen Rosenthal-Buroh