使用 app.config 配置 StructureMap
我需要将 StructureMap 配置从配置类移动到应用程序的 app.config。
有人知道以下代码是否具有等效的 XML 配置吗?
For(typeof(ILogger<>)).Use(typeof(Log4NetLogger<>));
I need to move my StructureMap configuration from a configuration class to my application's app.config.
Anyone know if the following code has an XML configuration equivalent?
For(typeof(ILogger<>)).Use(typeof(Log4NetLogger<>));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
StructureMap 文档说您可以使用 DefaultInstance 元素
,例如:
在上面的示例节点中,各部分是:
http://structuralmap.net/structuralmap/XmlReference.htm#section7
The StructureMap documentation says you can use the DefaultInstance Element
eg:
In the sample node above, the parts are:
http://structuremap.net/structuremap/XmlReference.htm#section7