我需要将StructureMap配置从配置类移动到我的应用程序的app.config。
任何人都知道以下代码是否具有等效的XML配置?
For(typeof(ILogger<>)).Use(typeof(Log4NetLogger<>));
答案 0 :(得分:0)
StructureMap文档说明您可以使用 DefaultInstance 元素
例如:
<DefaultInstance
PluginType="StructureMap.Testing.Widget.IWidget,StructureMap.Testing.Widget"
PluggedType="StructureMap.Testing.Widget.ColorWidget,StructureMap.Testing.Widget"
Scope="Singleton" />
在上面的示例节点中,部分是:
http://structuremap.net/structuremap/XmlReference.htm#section7