1
0
Форкнуть 0
Перейти к файлу
Jimmy Bogard b4dc09489d First go of it 2016-07-19 22:12:31 -05:00
src First go of it 2016-07-19 22:12:31 -05:00
test/AutoMapper.Extensions.Microsoft.DependencyInjection.Tests First go of it 2016-07-19 22:12:31 -05:00
.gitattributes First go of it 2016-07-19 22:12:31 -05:00
.gitignore First go of it 2016-07-19 22:12:31 -05:00
AutoMapper.DI.sln First go of it 2016-07-19 22:12:31 -05:00
Build.ps1 First go of it 2016-07-19 22:12:31 -05:00
LICENSE First go of it 2016-07-19 22:12:31 -05:00
README.md First go of it 2016-07-19 22:12:31 -05:00
appveyor.yml First go of it 2016-07-19 22:12:31 -05:00
global.json First go of it 2016-07-19 22:12:31 -05:00

README.md

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).Assembly);

Supports generic variance of handlers.