Let's say I have a project A that restores a nuget package which includes a specific DLL named D. Another project B in that solution needs to use/reference the D dll that is being restored as part of the nuget pack when project A is compiled. If I simply reference project A from my project B, then the classes in D are not visible within my project B. How I can achieve that, so I use functionality buried in D within my project B (the limitation is I cannot reference that same nuget package from project B)?
↧