You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A registration like builder.Register<A>() defaults to exposing the typed service A on the component.
Adding AutoActivate() to the registration hides this default. Since the name AutoActivate() doesn't suggest that it has anything to do with exposed services, this seems like a bug or rough edge in the API.
I don't think it's by design, I'm guessing we just don't have a test for the issue mentioned. It'd be awesome to get a PR for it if you're able. Thanks!
Describe the Bug
A registration like
builder.Register<A>()
defaults to exposing the typed serviceA
on the component.Adding
AutoActivate()
to the registration hides this default. Since the nameAutoActivate()
doesn't suggest that it has anything to do with exposed services, this seems like a bug or rough edge in the API.Steps to Reproduce
The test can be made to succeed by adding
AsSelf()
to the registration.Expected Behavior
AutoActivate()
would not alter the services exposed by the component in a user-visible manner.Dependency Versions
develop
branch.Additional Info
Happy to try to fix this and send a PR, just opening this first to gauge whether it's a known issue or by design. Not in any way blocked on this :-)
The text was updated successfully, but these errors were encountered: