How to make VS automatically copy the folder to the assembly directory?

I have a folder, and I want it to be automatically copied to the bin / Debug folder when creating the project.

Is there an automatic way to let Visual Studio (2013) do this for me?

+4
source share
1 answer

Use the build event in post :

copy "$(ProjectDir)\yourfolder*.*" "$(TargetDir)"
+5
source

Source: https://habr.com/ru/post/1523767/


All Articles