I'm not very familiar with post-build events, so I'm a little confused as to what's going wrong with my program. When compiling in visual studio 2010, I get the following:
The command "xcopy C:UsersMePathFoo.barLibrarydsoframer.ocx C:UsersMePathFoo.barinDebug /Y /E /D
xcopy C:UsersMePathFoo.barApplicationFiles C:UsersMePathFoo.barinDebug /Y /E /D
xcopy C:UsersMePathurl C:UsersMePathFoo.barinDebug /Y /E /D
rmdir /S /Q C:UsersMePathFoo.barinDebug.gwt-tmp" exited with code 4.
The program appears to run fine, despite this error, but I don't want to just ignore this issue and hope nothing bad happens. Strangely, this line started out as only a single command (the first xcopy) but as I continued to compile the project (fixing other problems, mostly references) the error message expanded larger and larger. Any idea what could be going on?
Edit: Here are the postbuild events that seem to be failing --
xcopy $(ProjectDir)Librarydsoframer.ocx $(TargetDir) /Y /E /D
xcopy $(ProjectDir)ApplicationFiles $(TargetDir) /Y /E /D
xcopy $(SolutionDir)com.myUrl.gwtwww $(TargetDir) /Y /E /D
rmdir /S /Q $(TargetDir).gwt-tmp
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…