In my build configuration, I have several project queues:
Queue1, Queue2, ... Queue(N)
I want to set up an assembly where I can set priority when creating each queue:
Queue1 = Priority of 2, Queue2 = Priority of 1 ...
which creates queues built in the following order:
Queue2, Queue1 ...
How can I accomplish this in CruiseControl.NET?
source
share