c# - log4net dll version conflict -


my c# win form application using log4net version 1.2.10.0 , 1 of external api using log4net version 1.2.11.0 today when consumed api in application bumped issues.

it seems reason log4net team have signed newest version of log4net 1.2.11 different public key. new key means assembly rebinding not possible!

i goggled find solution of problem , found many people facing issue , suggested download log4net 1.2.11.0 version old key , use assembly redirect. problem old key not matching key of log4net dll being used in application.

how can solve problem? can use gac not sure how.


Comments