Andrew Duffy
Andrew Duffy

Reputation: 563

install mvc 4 on server without visual studio

I'm getting a build server up and running (Windows Server 2008 R2).

The app will be MVC 4.

Do I need to install MVC3 and MVC4 onto the box? Or just MVC4?

I don't want to install a whole bunch of Visual Studio kerfuffle on the build server though. Which the web platform installers seem to be all wrapt up in.

Cheers for any MVC 4 wisdom!

Upvotes: 2

Views: 1684

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

If your application is going to use MVC 4 then all you need to install is ASP.NET MVC 4. You don't need to install Visual Studio. The MVC installer checks if VS is installed and if it is it adds the project templates to VS 2010. Otherwise it deploys only the runtime assemblies into the GAC.

Upvotes: 2

Related Questions