I have a solution in c# that contains few projects, and I want to add a reference on one project to another, but after I add, the project that I add the reference to does not detect all the classes from this dll. It seems that not all the classes are compiling into to the dll.
Does anyone know the reason?
You need to make the classes
publicso that they can be used by other projects.If that doesn’t help, try rebuilding the solution.