tfs2015 - Remove Structure from Copy -
i have task on tfs build copy files staging folder:
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



Comments
Post a Comment