Something like MEF (Managed Extensibility Framework) for .NET Framework 2.0

I used MEF in my projects, and I really liked it. It was easy, and after defining our awkward API model, it just worked.

Now I need something similar for the .NET Framework 2.0. Is there any similar project that can work in the .NET Framework 2.0?

I just want to add the plugin to my project in a simple way.

+2
source share
4 answers

Take a look Mono.Addins AFAIK built it on .NET 2.0.

+4
source

You can try R.SAT

+2
source

I know that SharpDevelop has a plugin mechanism. Maybe you can check the source code: http://www.icsharpcode.net/OpenSource/SD/

0
source

I think the closest is the System.Addins namespace, but this is a 3.5 feature. It does not require a different CLR than 2.0, but 3.5 is required to install on the target machine.

http://www.codeplex.com/clraddins

0
source

Source: https://habr.com/ru/post/1342952/


All Articles