在主 app.config 中指定插件的配置
我有一个基本的插件系统,其中插件 dll 在主 exe 的 app.config 中指定。我想将插件配置添加到主 app.config 中,如下所示:
<plugins>
<processorPlugins>
<plugin type="PluginType1, PluginAssembly1" />
<plugin type="PluginType2, PluginAssembly2">
<pluginConfig1 attr="..." />
<pluginConfig2>
<pluginOption1 />
<pluginOption2 />
<pluginOption3 />
...
</plugin>
</processorPlugins>
</plugins>
我不知道如何让它与 app.config 顶部指定的自定义配置部分很好地配合。
是否有某种方法加载插件,将插件 dll 中的自定义部分类型添加到 ConfigurationManager 或 configSections,然后使用这些类型重新解释插件选项?或者另一种方法可以做到这一点?
I've got a basic plugin system, where the plugin dlls are specified in the app.config of the main exe. I want to add plugin config to the main app.config like so:
<plugins>
<processorPlugins>
<plugin type="PluginType1, PluginAssembly1" />
<plugin type="PluginType2, PluginAssembly2">
<pluginConfig1 attr="..." />
<pluginConfig2>
<pluginOption1 />
<pluginOption2 />
<pluginOption3 />
...
</plugin>
</processorPlugins>
</plugins>
I can't figure out how to get this to play nicely with custom configuration sections specified at the top of the app.config.
Is there some way of loading the plugin, adding the custom section types in the plugin dll to the ConfigurationManager or configSections, then re-interpreting the plugin options using those types? Or another way of doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用您提到的 ConfigurationSections 来执行此操作,但您需要插件本身之外的插件配置,在其自己的部分中。
例如
,当您获取配置部分时,在您的代码中..
You can do this using ConfigurationSections as you mentioned, but you need to have the config for the plugin outside of the plugin itself, in its own section..
For example
Then in your code when you get the config section..