Hi,
Desired outcome:
4 customer facing sites as separated projects 1 set of admin code used by all four sites
My current setup is 4 Projects:
Core for models/entities
Data for repositories
Controllers for, well, controllers
Web for views
Now, the Web project contains views for admin and customer facing sides. I'm wanting to split that into an admin project and 4 'customer' projects.
I've google with little success about referencing a web app from a web app. I've read about areas on haacked.com, but that doesn't seem quite right. I don't particularly want to embed views in a dll, since that would be a pain while debugging/coding markup. Obviously I don't want multiple copies of the code.
Can anyone point out or suggest possible ways to do this? I'm a bit stumped.