I have a win32 cpp dll, and a c# project (PROJ_1), that use dllimport to call win32 dll functions. This dll included into project PROJ_1 and has build action as copy to output dir.
Another c# project (PROJ_2) references PROJ_1 and PROJ_3 references PROJ_2.
So, now we have something like this PROJ_3->PROJ_2->PROJ_1(dll)
So, when i make build in VS 2010: 1. In bin of PROJ_1 i have win32 dll. 2. In bin of PROJ_2 too 3. But in PROJ_3 - no win32 dll exists
What is the problem a how to resolve it?