For copying a files to the output directory in Visual Studio 2003 you could use Post-Build event:
- Right click on the project->Properties
- Common Properties->Build Events
-
Set Post-Build Event Command Line to:
xcopy /y $(ProjectDir)my_file.ini $(ProjectDir)$(OutDir)
-
OK and build!