I have a class library (A) VS project , which contains two different class library projects (B and C) which both use a dll (D) but of different versions , so
- A -> B -> Dv1
- A -> C -> Dv2
All projects and dlls involved are custom so i created strong named dll for D but because A is a class library project, i cant use binding directives in an app.config file (since its not an app)
Does anyone know of a good solution for this? Thanks!