-
-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot create custom RegistrationBuilder #108
Comments
I got it. I would like to adopt your suggestion (2). That extensibility looks good. |
Yeah, this fix should be enough for any case of extensibility I need. Thanks! |
Releaed in v1.5.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
IContainerBuilder
providespublic Register(RegistrationBuilder)
method which is completely useless given that all the constructors ofRegistrationBuilder
areinternal
. Taking this into account, there are two options:internal IContainerBuilder.Register(RegistrationBuilder)
RegistrationBuilder
more open for extensionIMO (2) is a better option since I've already got into a situation where a custom
RegistrationBuilder
would be useful.The text was updated successfully, but these errors were encountered: