multiple output directories

  • Thread starter Thread starter Romain TAILLANDIER
  • Start date Start date
R

Romain TAILLANDIER

Hi group

i try to have 2 output for my app :
bin\debug
AND
...\MyDir\SomeWhere\

is it possible ?

thanks
ROM
 
You can write Post Build event command line
at Project Properties > Coomon Properties > Build Events

Example:

echo
copy "$(TargetPath)" "...MyDir\SomeWhere\$(TargetFileName)
"
copy "$(TargetPath)" "...MyDir\SomeWhere\$(TargetFileName)
"
 
Back
Top