Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Created March 29, 2018 23:09
Show Gist options
  • Select an option

  • Save wellingtonjhn/ada390eb9185741b2892f77ea3206aca to your computer and use it in GitHub Desktop.

Select an option

Save wellingtonjhn/ada390eb9185741b2892f77ea3206aca to your computer and use it in GitHub Desktop.
MediatR Dependency Injection
public void ConfigureServices(IServiceCollection services)
{
services.AddMediatR();
}
public void ConfigureServices(IServiceCollection services)
{
var assembly = AppDomain.CurrentDomain.Load("DemoMediatrAspNetCore.Application");
services.AddMediatR(assembly);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment