Replies: 2 comments 1 reply
-
This issue has been tracked here: #1047 And a PR has been created fixing this issue here: #1048 |
Beta Was this translation helpful? Give feedback.
0 replies
-
The fix for this is to:
builder.Services.AddMediatR(config => {
config.TypeEvaluator = x => !x.ContainsGenericParameters;
config.RegisterServicesFromAssemblies(assemblies);
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());
Beta Was this translation helpful? Give feedback.
All reactions