We are now starting to implement a new software product inside what we call a platform that aggregates several types of applications.
We will be doing it in MVC3, but I'm trying to avoid keeping the ASP.NET and MVC together in the same project, so that we can enforce some guidelines and dependencies (that are incorrect in the previous project setup).
My idea is that working apart from the production product, clean start the technical project and develop while we address big design decisions (localization, authentication, SOC, Unit Testing, etc) will be the best opinion in the long term (designing a legacy free product)
What is your opinion:
1.Merge from day 1 (1 project)
2.Keep them separated (2 project) and invest time merging them
3.Develop MVC apart till main decisions are made (deploying to another IIS), then merging them together in a single project
I have read this questions:
Classic ASP and MVC side-by-side, different projects?
How to migrate existing asp.net application to asp.net MVC pattern format
I'm tempted to try a merge on deploy (in cruise control) keeping both project separated, but immediately face global.asax merging between the 2 projects!