Skip to content
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

AutoActivate() hides a registration's default "self" service #1450

Open
nblumhardt opened this issue Mar 27, 2025 · 1 comment · May be fixed by #1451
Open

AutoActivate() hides a registration's default "self" service #1450

nblumhardt opened this issue Mar 27, 2025 · 1 comment · May be fixed by #1451

Comments

@nblumhardt
Copy link
Member

Describe the Bug

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.

Steps to Reproduce

public class StartableTests
{
    [Fact]
    public void AutoActivate_DoesNotHideDefaultSelfService()
    {
        var builder = new ContainerBuilder();
        builder.RegisterType<MyComponent2>().AutoActivate();
        using var container = builder.Build();
        Assert.True(container.IsRegistered<MyComponent2>());
    }

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 :-)

@tillig
Copy link
Member

tillig commented Mar 27, 2025

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants