-1

my Xcopy fails to execute properly after I compile my project.

xcopy "$(SolutionDir)LuaModules\*.*" "$(TargetDir)Modules\" /S  /H /Y /C
Anthon
  • 69,918
  • 32
  • 186
  • 246
blipman17
  • 523
  • 3
  • 23

2 Answers2

0

You have unneeded slash after /S.

Mike Makarov
  • 1,287
  • 8
  • 17
0

$(SolutionDir) gives the directory where the solution is in, but the project ($ProjectDir) gives the folder of your files. I had to use that instead

blipman17
  • 523
  • 3
  • 23