xander
xander

Reputation: 1447

How to make VS copy a folder to the build directory automatically?

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

Answers (1)

user1968030
user1968030

Reputation:

Use in post build event:

copy "$(ProjectDir)\yourfolder*.*" "$(TargetDir)"

Upvotes: 5

Related Questions