Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Build Event Immediately Return

I have a somewhat long-running post-build event (long enough to be annoying to wait for but short enough to be finished after each release compilation) that I want to return immediately to VS. I've tried to run batch files with start but visual studio still waits for the cmd window to close before returning success.

Is there a way to immediately return success when spawning this post-build event?

Thanks.

like image 843
Max Avatar asked Aug 02 '11 15:08

Max


1 Answers

This question seems to think that there is a way:

powershell start-process <actual-command-line-to-run>

Haven't tested it myself though.

like image 71
MatsT Avatar answered Oct 27 '22 02:10

MatsT