My application consists of an executable project and a dll library. A link to the library project has been added in my executable project.
The library project contains some βcontentβ files, such as .ini.bmp. The problem is that these files are not copied to the device when deploying an executable project. Only the dll file is copied. Curiously, all files are copied to the \ ExecutableProject \ bin \ Debug directory on the desktop computer.
To get around this, I set the deployment path of the DLL project in the same way as the executable project, and I deploy both of them, but this solution seems not very pleasant.
I am using VS2008 and my device works in Windows CE.
source share