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
When a parameter is overridden with code like this: new InjectionParameter(new InjectionParameter(overridden) resolution fails.
new InjectionParameter(new InjectionParameter(overridden)
[TestMethod] public void SomeDescriptiveName() { var container = new UnityContainer() .RegisterType<ISomeType, SomeType>(new InjectionParameter(new InjectionParameter("xx")); var res = container.Resolve<Func<ISomeType>>(); Assert.SomeFailingVerification(...); }
The text was updated successfully, but these errors were encountered:
Ignoring https://github.com/unitycontainer/container/issues/357
2536ee1
No branches or pull requests
Description
When a parameter is overridden with code like this:
new InjectionParameter(new InjectionParameter(overridden)
resolution fails.To Reproduce
The text was updated successfully, but these errors were encountered: