2 different paths in the output of the build

1

How can I make the output of the compilation to be in 2 different places, would it have?

    
asked by anonymous 15.11.2017 / 17:25

1 answer

0

You can create a compilation event that copies, something like this:

Project Properties -> Build Events -> Post-build event command line

You can place any command that the operating system accepts. For example:

xcopy /y $(ProjectDir)arquivo.exe \OndeQuiser

    
15.11.2017 / 17:47