Visual Studio post build events stuck waiting for executable to finish before running app in debug mode

后端 未结 7 1819
猫巷女王i
猫巷女王i 2020-12-28 15:36

Part of the post build on my project is the execution of a program I wrote for testing the main application. Unfortunately, the post build process in visual studio locks up

7条回答
  •  一向
    一向 (楼主)
    2020-12-28 15:57

    This seems to be a known issue of VS 2010 (e.g. here and here) and it seems it won't be fixed that soon.

    Regarding a possible workaround, similar to the one mentioned by @RichieHindle, one of the MS Connect persons suggests:

    START /WAIT cmd /c YourPostBuildTool.exe
    

提交回复
热议问题