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

后端 未结 7 1811
猫巷女王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 16:00

    Running your test program via start might work. Change your post build step from this:

    runtest.exe
    

    to this:

    start runtest.exe
    

提交回复
热议问题