I’ve got a postbuild event that is executed just fine locally, but not on AppHarbor:
<PostBuildEvent> if not exist "$(TargetDir)NativeBinaries" md "$(TargetDir)NativeBinaries" xcopy /s /y /i "$(SolutionDir)packages\LibGit2Sharp.0.8\NativeBinaries\x86\*.*" "$(TargetDir)NativeBinaries\x86" xcopy /s /y /i"$(SolutionDir)packages\LibGit2Sharp.0.8\NativeBinaries\amd64\*.*" "$(TargetDir)NativeBinaries\amd64" </PostBuildEvent>
What am I doing wrong?
Postbuild events are executed as part of the AppHarbor build process. For particulars on why your build may be failing, please see the related AppHarbor support discussion.