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 VS 2017 the command Dmitry Pavlov posted would be the following:
xcopy /y "$(ProjectDir)my_file.ini" "$(OutDir)"
Quotes are important in case there are spaces in the path to the project directory.