I have recently started to use NuGet and I was wondering if there is an asp.net mvc 3 package that I can install so that I do not have to reference the aspnet mvc3 assemblies via a lib folder like the traditional way with all references set to CopyLocal = true. At the moment I have the following assemblies in my lib folder:

Microsoft.Web.Infrastructure.dll, System.Web.Helpers.dll, System.Web.Mvc.dll, System.Web.Razor.dll, System.Web.WebPages.Administration.dll, System.Web.WebPages.Deployment.dll, System.Web.WebPages.dll, System.Web.WebPages.Razor.dll

Any idea?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 11 down vote accepted

If you're using Visual Studio 2010 SP1, you can right click on the project and select "Add Deployable Assemblies". Select the ASP.NET MVC 3 option. That'll add the MVC assemblies to a special directory which will ensure they are in the bin directory when building/publishing your web application.

link|improve this answer
oh hi there @Haacked thanks for chiming in – qntmfred May 13 '11 at 0:40
2  
oh thats a new one Phil..didn't know that ... cheers ... but I still wonder why do we have to go down this new route, why not simply have an nuget package and put these assemblies in the packages folder – nabeelfarid May 13 '11 at 13:36
1  
We're looking into that option. We ran into some...non-technical difficulties while investigating that. – Haacked May 17 '11 at 17:50
It does not work with Class Library projects. Seems NuGet is still the best choice if available. – deerchao Dec 14 '11 at 17:02
Wait...*Non*-technical difficulties? – DanM Dec 24 '11 at 4:57
feedback

Looks like the "aspnetmvc" NuGet package is what you're looking for.

http://nuget.org/List/Packages/aspnetmvc

N.B. This isn't an official package from Microsoft, but one created by a member of the community.

link|improve this answer
Well I actually found this one but this does not install it as a package like others, it uses some thing called chocolaty which simply installs asp.net mvc on the machine as oppose to in the package folder of the solution – nabeelfarid May 13 '11 at 13:21
Didn't realize that. @Haacked's solution is your best bet then. – James Kovacs May 13 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.