Copying files into the application folder at compile time

前端 未结 8 1199
无人共我
无人共我 2020-12-02 08:25

If I have some files I want to copy from my project into the .\\bin\\debug\\ folder on compilation, then it seems I have to put them into the root of the projec

8条回答
  •  旧巷少年郎
    2020-12-02 08:39

    You can use the PostBuild event of the project. After the build is completed, you can run a DOS batch file and copy the desired files to your desired folder.

提交回复
热议问题