Post Build exited with code 1

后端 未结 18 1873
囚心锁ツ
囚心锁ツ 2020-12-04 16:11

I have a project with a post build event:

copy $(ProjectDir)DbVerse\\Lunaverse.DbVerse.*.exe  $(TargetDir)

It works fine every time on my m

18条回答
  •  再見小時候
    2020-12-04 16:44

    The one with the "Pings" helped me... but may be explained a little better...

    For me the solution was to change:

    copy $(TargetDir)$(TargetName).* $(SolutionDir)bin
    

    to this:

    copy "$(TargetDir)$(TargetName).*" "$(SolutionDir)bin"
    

    Hope it works for you. :-)

提交回复
热议问题