Best practices for implementing an addin/addon/plugin strategy

前端 未结 3 1018
感情败类
感情败类 2021-02-10 02:53

My application should be extensible. For my own needs I have implement some services. These services are based on the IoC/DI princple. So the services encapsulate the concept of

3条回答
  •  自闭症患者
    2021-02-10 03:39

    You seriously need to look at MEF - the Managed Extensibility Framework.

    • Managed Extensibility Framework Overview
    • Building Composable Apps in .NET 4 with the Managed Extensibility Framework
    • MEF on Codeplex

    It's a great new framework that Microsoft itself is using in e.g. Visual Studio 2010 for its extensibility story. Great and easy to use - why reinvent the wheel when you can use something that thousands of dev will use shortly??

提交回复
热议问题