The new NuGet package for Common.Logging.Log4Net gets log4net version 1.2.11 but it depends on 1.2.10 and so logging will not work. We have to update the Common.Logging.Log4Net.nuspec file inside of Common.Logging.Log4Net.2.0.0.nupkg file in each of our projects to force it to depend on 1.2.10.
We change
<dependency id="log4net" version="1.2.10" />
to
<dependency id="log4net" version="[1.2.10]" />
to get it working.
Please update the project so this step will not be necessary.
Thanks,
Matthew MacFarland