How to run tasks in parallel in MSBuild

前端 未结 5 2029
半阙折子戏
半阙折子戏 2020-12-02 22:50

Unless I\'ve grossly misunderstood MSBuild, tasks are executed in the document order in which they appear within a \'Target\' node.

I\'d like to be able to specify

5条回答
  •  一向
    一向 (楼主)
    2020-12-02 23:29

    I don't think there is a way to do this other than using some external tool. I suspect this is because this introduces potential dependency problems that MS chooses to ignore for the time being, allowing external tool vendors to tackle the problem (and charge quite a bit of money for it).

提交回复
热议问题