I have MVC project with Npgsql nuget package installed version 3.2.5Now I need to refernce another project to this MVC project that also uses Npgsql package but with newer version 4.1.3
When I use the project reference services in the MVC project I get an error in runtime that could not find Npgsql 4.1.3
Ofcourse its because MVC project knows Npgsql version 3.2.5
Is there anyway to reference the project and force it to use its own Npgsql packcge ?
What is the best way to solve those kind of isses?
Thank you