I have two different projects in a Visual Studio solution. I want to use one of the two as the main part of my program and so have referenced the second project like:
I know that I can use all the public classes from the project x on my main project. My question is: can I have dlls on the second project, x, and use the methods of those dlls in my first project?
A good example will be if, every month, I have a new version of a dll and I do not want to change this dll on 10 different projects in the solution explorer, I want to add those dlls as references on the x project and then all other projects to use the same dll.