I am trying to move a project to .net standard and it basically is a class library. I am using log4net for logging and I was using the method
public static ILog GetLogger(string name);
As this is a library referenced by multiple projects, defining repository should not happen as each project referencing this one, defines it's own repository for logging. How can I circumvent this issue when it comes to porting to .Net standard?