Skip to content

compatibility change for asp.net core #9

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions