Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Commit

Permalink
Fix the "with an assembly" example in readme
Browse files Browse the repository at this point in the history
.Assembly not available on Core.
  • Loading branch information
dpaquette committed Jul 22, 2016
1 parent 6c29bb8 commit 0159332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -9,7 +9,7 @@ services.AddMediatR(typeof(MyHander));
or with an assembly:

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

Supports generic variance of handlers.

0 comments on commit 0159332

Please sign in to comment.