views:

173

answers:

1

Does anyone know about any articles/examples of using System.AddIn with ASP.NET and/or ASP.NET MVC applications?

I'm looking to use System.AddIn to make an ASP.NET MVC application extensible.

+1  A: 

The examples I have seen all use the Managed Extensibility Framework.

The Managed Extensibility Framework (MEF) is a new library in .NET that enables greater reuse of applications and components. Using MEF, .NET applications can make the shift from being statically compiled to dynamically composed.

See also http://stackoverflow.com/questions/835182/choosing-between-mef-and-maf-system-addin

Robert Harvey