I love the idea of the Portable Areas in MvcContrib. After reading up on it, and building a couple for practice, I was surprised not to find a plethora of open source projects leveraging this neat way to distribute features across MVC applications.

Being a guy who has messed around with Rails frequently, I love that I can find a plugin for just about anything. (Comments, Authentication, Search, CMS, Logging, etc.)

However, when searching for Portable Areas, the only ones I see are the samples and an OpenId implementation.

Where is the love for Portable Areas?

  • Is it too new?
  • Is there something wrong with the architecture?
  • Is there just not as thriving an open source community as there is in Ruby world?
link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

While I cannot answer your question about why there isn't a plethora of plugins using portable areas because this is a subjective question I can tell you why I don't use them: because they rely on custom VirtualPathProvider which don't work if your site is precompiled and I precompile my web applications before shipping.

I use NuGet instead of portable areas and there begin to be a plethora of packages distributed using this technology.

link|improve this answer
I also use NuGet and love it. However, I'm still surprised that a plugin architecture that specifically caters towards an MVC project wouldn't gain more traction. Maybe there just isn't a demand for it like I would expect. – Brandon Joyce Mar 14 '11 at 20:31
This is not true at all. Portable areas work with pre-compiled solutions just fine. I have a system in production right now with all of the views, controllers and models precompiled into an assembly. This is the entire point of portable areas. – jfar Mar 14 '11 at 20:32
@jfar Thanks for that. I'm un-accepting this answer for now then. – Brandon Joyce Mar 14 '11 at 20:35
@jfar, I think you misunderstood me. By precompiled I didn't mean embedding files into a separate assembly. That's perfectly possible with portable areas and it is what they are meant for. I meant precompiling your web site, for example with Web Deployment Projects. Here's a blog post which illustrates the problem that I meant and which is really an annoying missing feature in ASP.NET. – Darin Dimitrov Mar 14 '11 at 20:42
@Darin Dimitrov - I see now. I still have another issue with your answer. ;) Comparing NuGet to Portable Areas is a bit of a oddball. Thats like raisins to grape vines. – jfar Mar 14 '11 at 21:50
show 6 more comments
feedback

Not only portable areas are new, but ASP.NET MVC is also new for many people.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.