-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
Grace auto registers concrete types where as microsoft's container does not. This can cause some odd behavior with logging and possible other issue.
I'm going to add the following configuration to block microsoft types from being auto registered.
scope.Configure(c =>
{
c.ExcludeTypeFromAutoRegistration("Microsoft.*");
});