I guess this is a newbie question, but anyway. I've got a solution composed of two projects (1 DLL and 1 console app). The console app includes some headers from the DLL project and of course, when building it all, the linker tells me that there are some unresolved symbols. I've already added a Reference from the app to the DLL projects (Project Properties->References->Add new Reference) but this is still not working.
The only solution I found is to duplicate the .cpp files corresponding to the headers in the second project but I guess this isn't the best way to do it but I guess there has to be a better way to do this?