Pre Build Event: Copy Folder and it's SubFolders and files into Build Directory using XCopy

前端 未结 4 1993
死守一世寂寞
死守一世寂寞 2020-12-29 23:37

I have Window Application and I have some plugins & it\'s ChildPlugins which I placed in My Application folder structure(see folder structure image). I used SVN as sour

4条回答
  •  悲&欢浪女
    2020-12-29 23:47

    Better if it doesn't require a path with solution name or configuration type:

    xcopy "$(ProjectDir)MyFolder\*.*" "$(TargetDir)\MyFolder" /Y /I /E
    

提交回复
热议问题