I have a .net solution (written in C ++ / CLI) that references some .dll projects as follows:
MainProject->ProjectA->ProbjectB
MainProject->ProjectB
I initially referred to both ProjectA and ProjectB from MainProject, which gave me warnings, as mentioned above.
I can remove the warnings by removing the link to ProjectB from ProjectMain, but this makes it less obvious that MainProject uses ProjectB. Is this the right way to get rid of warnings?
source
share