c# - Copy folder in one Project to bin of another Project in same Solution -



c# - Copy folder in one Project to bin of another Project in same Solution -

this question has reply here:

copy file(s) 1 project using post build event…vs2010 4 answers

i have folder lives in c# project want copied bin after every release build in vs2013. how can specify additional items copied bin?

the folder in project in same solution.

for example

soluationa projecta projectb folderc

i want re-create folderc bin of projecta

if actually resides in project (that is, files included in .vcproj file); need set "copy output directory" setting "copy if newer" or "copy always". directory construction maintained.

if need create directory, utilize mkdir in post-build event create it.

if need re-create existing folder in, utilize xcopy in post-build event re-create over.

c#

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -