Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 363 Bytes

File metadata and controls

15 lines (10 loc) · 363 Bytes

MediatR extensions for Microsoft.Extensions.DependencyInjection

Scans assemblies and adds handlers implementations to the container. To use, with an IServiceCollection instance:

services.AddMediatR(typeof(MyHander));

or with an assembly:

services.AddMediatR(typeof(Startup).GetTypeInfo().Assembly);

Supports generic variance of handlers.