Visual Studio: Multiple post-build commands?

后端 未结 10 1232
逝去的感伤
逝去的感伤 2020-12-13 16:47

Visual Studio 2008 lets me declare a command and attach it to the post-build event for a project. Like a lot of developers, I use it regularly to xcopy files to the applicat

10条回答
  •  -上瘾入骨i
    2020-12-13 17:32

    Just prefix "call " to your batch script. So that statements below the Batch script is also executed after returning the call from batch script.

    call Script1.cmd
    call Script2.bat
    

提交回复
热议问题