Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

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

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>
share|improve this answer
Thanks. This worked. – EliO Feb 12 '12 at 7:53
Why would this be needed though? Is it because DotNetOpenAuth is 3.5? – David Freitas Apr 13 '12 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 '12 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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