I’m developing a web project that consists from many other projects, so
when I build my main project I need to copy some resource files to the folder of main project
and make all copied files as included in this project.
I’m using post event feature for doing this.
xcopy /E /Y "SourcePath1" "$(ProjectDir)Scripts\"
xcopy /E /Y "SourcePath2" "$(ProjectDir)Scripts\"
xcopy /E /Y "SourcePath3" "$(ProjectDir)Scripts\"
this command copies my files, but these files are not included in the project. What command can I use for including copied files?
I need something like
include "pathtwherefilesare"
Thanks!
you can copy once, and add copied files to project, then commands will replace old files with new ones
Hope this helps