I've 3 projects A,B and C where A and B is .netcore class library and C is WPF (.netcore).
In project A Pomelo.EntityFrameworkCore.MySql a nuget packge is installed which has the dependency on Microsoft.EntityFrameworkCore.Relational (>= 3.1.0)
and in project B Oracle.EntityFrameworkCore is installed which has the dependency on Microsoft.EntityFrameworkCore.Relational (>= 2.1.11 && < 3.0.0)
Both project A and B are referenced in project C but since both project has dependency on same assembly different version it won't compile.
I've also followed this guide but since there is no App.config in .netcore it's not working for me.
Here's the demo project on github