2011-06-28 83 views
3

我在我的類庫中使用MS企業庫版本4.1。在app.config文件中,我已經在配置文件中插入了「loggingConfiguration」和「exceptionHandling」的適當條目。但是,它會導致崩潰,即「在配置源中找不到配置部分」。使用MS企業庫進行日誌記錄

configSections

<configSections> 
    <section name="loggingConfiguration" 
      type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSetting‌​s, Microsoft.Practices.EnterpriseLibrary.Logging, 
        Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
    <section name="exceptionHandling" 
      type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.Exce‌​ptionHandlingSettings, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling, 
        Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 

回答

2

的錯誤說,你需要將它們在你的configSection鏈接以及(剛進入loggingConfiguration和exceptionHandling節點不會做)。

This MSDN pages has some Hands on Labs,我發現非常有用

+0

我已經在configSection.i.e中做了該鏈接。 –

+0

我已經在configSection.ie

+0

詳細說明,我正在做一個(WCF RIA服務的網絡類庫)的日誌記錄和該項目的參考用於Web項目。 –

0

有相同的錯誤消息。我的問題是我引用了兩個不同版本的Microsoft.Practices.EnterpriseLibrary.Logging。

我正在引用4.1.0.0,但配置文件版本指向5.0.414.0。項目中也有混合的圖書館版本。

相關問題