Reputation: 1447
I have a folder and I want it to be copied to the bin/Debug folder automatically when the project is built.
Is there an automatic way to let Visual Studio (2013) do that for me ?
Upvotes: 3
Views: 3517
Reputation:
Use in post build event:
copy "$(ProjectDir)\yourfolder*.*" "$(TargetDir)"
Upvotes: 5