Unity 2.0 XML 配置可能吗?
是否可以使用自定义 XML 在我的 IoC 类库项目中存储 Unity 容器配置?
我不想在启动项目(WPF 项目)中存储 IoC 配置。
问候 布莱恩
Is it possible to use custom XML to store unity container configuration in my IoC class library project?
I dont want to store the IoC config at the startup project (WPF project).
Regards
Bryan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ConfigurationManager.OpenMappedExeConfiguration 加载任意文件,但您需要自己执行此操作 - 默认情况下,更简单的重载将转到 appdomain 的配置文件。
如果您有 Unity 源代码,则可以在 Unity\Tests\TestSupport.Unity\Configuration\ConfigFileLoader.cs 文件中查找(可能过于复杂)示例。在那里,我们从资源中提取配置文件,将其转储到磁盘,然后通过 ConfigurationManager 加载它。
You can use ConfigurationManager.OpenMappedExeConfiguration to load an arbitrary file, but you'll need to do that yourself - the simpler overloads will go to the appdomain's config file by default.
If you have the Unity source code, you can look in the Unity\Tests\TestSupport.Unity\Configuration\ConfigFileLoader.cs file for an (perhap overly complex) example. There we pull a config file out of a resource, dump it to disk, and then load it via ConfigurationManager.