I want to copy all my include folder on the post compile event to the bin folder. i wrote this command
XCOPY ".\include\*.*" "..\bin\include" /S /Y
but i get error MSB3073 (error MSB3073 )
the command VCEnd existed with code 1
I also try to do it with 'copy' and without /S /Y but nothing work
What i did wrong ? How to do it ?