up vote 1 down vote favorite
share [g+] share [fb]

I used MEF in own of my projects and I liked it a lot. It was easy and after figuring our awkward API model, it just worked.

Now I need something like that for .NET Framework 2.0. Is there any similar project out there which can work under .NET Framework 2.0?

I'm simply looking for adding plug-in support to my project in a simple way.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Have a look at Mono.Addins AFAIK its built upon .NET 2.0.

link|improve this answer
1  
Shameless Plug I've started a series of posts on my blog describing my experiences using Mono.Addins in a commercial .NET application. codeelegance.blogspot.com – Kenneth Cochran Jun 4 '09 at 17:52
feedback

You can try R.SAT

link|improve this answer
Thanks for the tip, R.SAT looks interesting. – Tiberiu Ana May 25 '09 at 8:11
feedback

I know SharpDevelop has a plug-in mechanism. Maybe you could check out their source code: http://www.icsharpcode.net/OpenSource/SD/

link|improve this answer
feedback

I think the closest thing is the System.Addins namespace but that is a 3.5 feature. It doesn't require a different CLR than 2.0 but it does require the 3.5 framework be installed on the target machine.

http://www.codeplex.com/clraddins

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.