1
You can create a compilation event that makes the copy, something like that:
Project Properties -> Build Events -> Post-build event command line
You can put any command the operating system accepts. For example:
xcopy /y $(ProjectDir)arquivo.exe \OndeQuiser
I wanted to put in a folder on disk C as the code would look?
– user92401