我的App.config文件包含:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration"/>
</configSections>
<system.diagnostics>
<sources>
<source name="TraceTest" switchName="SourceSwitch"
switchType="System.Diagnostics.SourceSwitch" >
<listeners>
<add name="console" />
<remove name ="Default" />
</listeners>
</source>
</sources>
<switches>
<add name="SourceSwitch" value="All" />
</switches>
<sharedListeners>
<add name="console"
type="System.Diagnostics.ConsoleTraceListener"
initializeData="false"/>
</sharedListeners>
<trace autoflush="true" indentsize="4">
<listeners>
<add name="console" />
</listeners>
</trace>
</system.diagnostics>
<unity xmlns="http://schemas.microsoft.com/practices/2010/unity">
<assembly name="ContextDownloader"/>
<namespace name="ContextDownloader.Log"/>
<namespace name="System.Diagnostics"/>
<sectionExtension type="Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionConfigurationExtension,
Microsoft.Practices.Unity.Interception.Configuration"/>
<container>
<extension type="Interception"/>
<register type="ILogWorker" mapTo="FileLogWorker">
<interceptor type="InterfaceInterceptor"/>
<interceptionBehavior type="TraceBehavior"/>
</register>
<register type="TraceSource" name="interception">
<constructor>
<param name="name" type="System.String" value="TraceTest" />
</constructor>
</register>
<register type="TraceBehavior">
<constructor>
<param name="source" dependencyName="interception" />
</constructor>
</register>
</container>
</unity>
</configuration>
我在代码中从App.config加载配置:
var fileMap = new ExeConfigurationFileMap { ExeConfigFilename = "App.config" };
Configuration configuration = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
var unitySection = (UnityConfigurationSection)configuration.GetSection("unity");
var container = new UnityContainer();
所以它抛出异常
第未处理的异常:System.Configuration.ConfigurationErrorsException:为unity创建配置节处理程序时出错:类型名称或别名Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionConfigu rationExtension,无法解析Microsoft.Practices.Unity.Interception.Configuration。请检查您的配置文件并验证此类型名称。
var unitySection = (UnityConfigurationSection)configuration.GetSection("unity");
行。我如何加载Microsoft.Practices.Unity.Interception.Configuration程序集?
有关申请的更多详情。我有控制台应用程序和库。我只是在我的控制台应用程序中调用一个方法,然后所有逻辑都在库中。
感谢您的回答,将此Microsoft.Practices.Unity.InterceptionExtension.Configuration.dll复制到输出库。你能帮我加载system.diagnostic部分吗?
答案 0 :(得分:1)
您是否确认Microsoft.Practices.Unity.Interception.dll
和Microsoft.Practices.Unity.Interception.Configuration.dll
位于您的应用基础文件夹中,或者是否已在GAC中注册?
您是否在编译后检查了您的App.config
文件是否仍然命名为App.config
而未重命名为MyApp.Foo.dll.config
?
请您发布完整的配置文件。上面的代码段完全适用于我的机器,所以我猜还有其他的东西丢失了。
顺便说一句:如果你想使用默认的App.config
或Web.config
,你可以放弃ExeConfigurationFileMap
并直接拨打ConfigurationManager.GetSection("unity")
<强>更新强>
所以你有一个不是控制台应用程序的应用程序(例如WinForms或WPF),并且想要将跟踪输出写入控制台?那么也许this article可以提供帮助。它显示了如何使用托管代码中的本机Win32调用来分配控制台窗口。
如果您想使用与库捆绑在一起的配置文件,并且独立于应用程序的配置文件this article,可能会对StackOverflow感兴趣。