When I build a Visual Studio project, the executable is written to the output directory specified in the projects Property Page.
I have a project that has some extra
For copying a files to the output directory in Visual Studio 2003 you could use Post-Build event:
Set Post-Build Event Command Line to:
xcopy /y $(ProjectDir)my_file.ini $(ProjectDir)$(OutDir)
OK and build!