We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I cannot register internal classes. I tend to not expose classes outside the containing assembly, so usually they are
public interface IA {} internal class A : IA {}
public interface IA {}
internal class A : IA {}
if I decorate A is not added to the registry
A
The text was updated successfully, but these errors were encountered:
Add test that showcases internal services can be registered
9e79c76
Related to #107
As shown in #111, this is fully supported.
Perhaps there's something else going on?
Sorry, something went wrong.
8ac296b
No branches or pull requests
I cannot register internal classes.
I tend to not expose classes outside the containing assembly, so usually they are
public interface IA {}
internal class A : IA {}
if I decorate
A
is not added to the registryThe text was updated successfully, but these errors were encountered: