Reputation: 705
I know that ASP.NET MVC 1.0 is bin-deployable as explained in Phil Haack's article.
Is ASP.NET MVC 2.0 also bin-deployable? Has anyone done this already that can point out potential pitfalls specific to version 2.0 if there are any?
I would like to deploy a relatively simple ASP.NET MVC 2.0 onto a Windows 2008 Web server that does not have ASP.NET MVC 2.0 installed. It is running .NET Framework 3.5 Service Pack 1.
Upvotes: 1
Views: 766
Reputation: 935
I have deployed a MVC 2 application and it works fine! The release is at RTM and would suggest that its bug-free, with a few child-problems i guess! =)
If your server (IIS7) or similar dont have MCV.dll you have to choose on your .dll (Copy Local: Always)
Upvotes: 1