tfs2015 - Remove Structure from Copy -


i have task on tfs build copy files staging folder:

copy files task

currently, builds staging folder subfolder structure, e.g. \myproject\bin\release\

is there way set dumps \myproject\, without bin\release portions?

you can try change output path :

  • configure build configuration output path, eg set ".\" as
    out path (in solution right click project > properties > build > output > output path).
  • specify output path in msbuild arguments such /p:outputpath=$(build.binariesdirectory) copy $(build.binariesdirectory) directly. reference screenshot below.

besides, can try copy contents stage folder first. add copy files step copy \myproject\bin\release\** \myproject

enter image description here

enter image description here


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -