Is there a way to make DotNetOpenAuth logging work with the new version of log4net?

For some reason it doesn't seem to work for me (I tried both the old and the new publicKeyToken of log4net).

Thanks

link|improve this question
Can you please specify what version exactly of log4net you're trying? – Andrew Arnott Feb 9 at 20:46
feedback

1 Answer

up vote 1 down vote accepted

Have you tried a binding redirect?

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <dependentAssembly>
            <assemblyIdentity name="log4net" publicKeyToken="**key**" />
            <bindingRedirect oldVersion="**versionDNOAbuiltWith**" newVersion="**yourversion**" />
        </dependentAssembly>
    </assemblyBinding>
</runtime>
link|improve this answer
Thanks. This worked. – EliO Feb 12 at 7:53
Why would this be needed though? Is it because DotNetOpenAuth is 3.5? – David Freitas Apr 13 at 6:51
It's because log4net makes breaking changes in "patch" release versions, and includes the patch version number (major.minor.patch) in the [AssemblyVersion] attribute, forcing everyone to recompile every time a new version is issued and agree on the version -- or use a binding redirect. – Andrew Arnott Apr 14 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.