Sean Anderson
Sean Anderson

Reputation: 29301

Deploying an MVC3 application - Does MVC need to be installed on client PC or possible to just ship bins?

As the title states. Our current method of deployment installs MVC1 onto the user's PC, but then brings over necessary MVC3 DLLs and drops them into the bin folder. I am wondering... if we're bringing the DLLs over, does MVC1 need to be installed at all? Any sort of routing, IIS configuration, etc. which might go on through installing MVC?

Upvotes: 0

Views: 101

Answers (1)

Robert Levy
Robert Levy

Reputation: 29073

No, you don't need to install MVC1. See here for instructions for "bin deployment": http://www.hanselman.com/blog/BINDeployingASPNETMVC3WithRazorToAWindowsServerWithoutMVCInstalled.aspx

Upvotes: 2

Related Questions