tags:

views:

56

answers:

2

when deploying to mvc 2 rc to a server, all we need to do is deploy the updated .dll's for mvc correct?

i.e. nothing has to be installed on the server?

BTW, After installing MVC RC, where are the new .dll's?

A: 

Yes, that is correct.

Nebakanezer
+1  A: 

First, look in the references section of your project. Right-click the reference and select Properties. Under Properties, change Copy Local to True. It will be copied to the build directory when you re-build your project and copied to the target server when you publish.

My MVC 2 DLLs are located here:

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 2\Assemblies\System.Web.Mvc.dll

Brad Gignac