Answer the question
In order to leave comments, you need to log in
How to run a program from MSBuild script in background?
Description: on the continuous integration server, before running tests, you need to run one program (java -jar program.jar), which must be running all the time the tests are running, then closed.
The problem is that the standard one launches my program and waits for its completion, but I need it to launch it and “forget” it (analogue of Ant's).
How to do it? :)
Answer the question
In order to leave comments, you need to log in
I'm not sure that I have a neat solution, but here's what I could generate:
1) if you use CI, you can probably run the second project in parallel
2) run ant from msbuild
3) write your own task for msbuild
4) and just stumbled upon the link... http://www.msbuildextensionpack.com
Yes, I myself have already stumbled upon AsyncExec from MSBuild.ExtensionPack - just what you need!
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question