Skip to content

compatibility change for asp.net core #9

@ipjohnson

Description

@ipjohnson

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.*");
            });

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions