Reputation: 2412
just a simple question:
I'm going to use Ninject in my ASP.NET MVC 3 application, but in the Package Manager there seem to be a few options:
Among others. Which of these should I install?
Upvotes: 10
Views: 3180
Reputation: 40202
Install Ninject.MVC3
. The package will automatically install any dependencies it needs (i.e. Ninject
)
Edit:
Looking at Ninject.Web.Mvc.nuspec
, it looks like it will install Ninject
2.2.0.0
2.2.1.0
Placed proper version. But again, install it directly so that any dependencies are also automatically installed.
Upvotes: 2
Reputation: 32725
See https://github.com/ninject/ninject.web.mvc/wiki/Setting-up-an-MVC3-application
http://www.planetgeek.ch/2011/03/01/ninject-2-2-1-0-and-ninject-mvc3-2-2-1-0-released/
http://www.planetgeek.ch/2011/02/22/ninject-mvc3-and-ninject-web-mvc3-merged-to-one-package/
The last one is a bit outdated in the mean time, but still contains good information. I try to update it during the comming days.
Upvotes: 8