Is there a way to run an outside executable after a solution is built in Visual Studio 2008?

后端 未结 2 1272
梦如初夏
梦如初夏 2021-02-07 06:47

I\'m not talking about a post build event for a project. Rather, I want to run an executable automatically after the entire solution is built. Is there a way to do a post build

2条回答
  •  长发绾君心
    2021-02-07 06:59

    not directly.
    you can make a project which has a dependency in all other projects and add a post build step to it. Effectively this will cause it to run after everything else.

提交回复
热议问题