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
https://github.com/ninject/ninject.web.mvc/blob/dafbcbfcbe2e15c0de6ed24781c1d6cbf21d6c9f/mvc3/src/Ninject.Web.Mvc/NinjectMvcHttpApplicationPlugin.cs#L63
Should set resolver to null in Stop function
DependencyResolver.SetResolver(null)
The text was updated successfully, but these errors were encountered:
Just realized that null is not valid for SetResolver function. Set it back to the DefaultDependencyResolver is a tricky way:
DependencyResolver.SetResolver(new DependencyResolver().InnerCurrent);
http://aspnetwebstack.codeplex.com/SourceControl/latest#src/System.Web.Mvc/DependencyResolver.cs
Sorry, something went wrong.
No branches or pull requests
https://github.com/ninject/ninject.web.mvc/blob/dafbcbfcbe2e15c0de6ed24781c1d6cbf21d6c9f/mvc3/src/Ninject.Web.Mvc/NinjectMvcHttpApplicationPlugin.cs#L63
Should set resolver to null in Stop function
The text was updated successfully, but these errors were encountered: