Reputation: 8356
Suppose I have a very large site like amazon.com. I’d like to use asp.net mvc for the whole site but having one large project with hundreds of contributors is not practical. I’d like to split the work into projects like books, tools, toys, groceries, etc. for each department. Then when they build and deliver a new release I can just drop the “books.dll” into the site and it all magically works. I see this thing called “areas” but it looks like they’re still part of the same project. I need something that could potentially be stored not just in a separate project but a separate TFS instance as well. The departments would only ever come together on my test/production servers and hopefully just by dropping in DLLs. Anyone know of a way to do this?
Upvotes: 2
Views: 1452
Reputation: 8356
Shoulda looked harder before posting:
http://msdn.microsoft.com/en-us/library/ee307987%28VS.100%29.aspx "Walkthrough: Creating an ASP.NET MVC Areas Application Using Multiple Projects"
(self-slap!)
Upvotes: 2
Reputation: 658
Asp MVC 2 has support for Project Areas catering for this development scenario
More detail at Phil Haack blog
Upvotes: 4