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)
"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top