I managed to solve this problem by removing from ALL logging links in the app.config file ::
, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null
t
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null" requirePermission="true" />
becomes:
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging" requirePermission="true" />
It is not perfect, but it works ...
The corporate library configuration tool sets the values ββback, so you need to keep track of this. I know that there is a way to tell the configuration file to accept these incorrectly configured parameters, but I'm not sure how to do this.
jlo-gmail Apr 04 '17 at 19:34 on 2017-04-04 19:34
source share