I'm currently using the NUnit task (in a batch, continueonerror=true) to run all my solution's test projects during my full build.
Is there any way/best practice to run one test project on each processor core in parallel?
Batching per se is not parallelizable in msbuild, however, maybe you know of a best practice how to utilize NUnit in such a way. Maybe using your Parallel-Task in some way?
Best regards,
D.R.