vote up 0 vote down star

How do i implement Mutex lock in Nant, the reason why i need this feature is because

i register COM components in order to get my build working , and then end of the build i Un Register the COM components.

without mutex lock, different version of COM are registered and face some issues.

so it would be better if we apply mutex lock in nant script , so if the build is running other project will wait until it finishes.

flag

69% accept rate
Your question might be better expressed as "how do I prevent multiple NAnt scripts from running at the same time on the same machine?". – Roger Lipscombe Dec 11 '08 at 16:56

1 Answer

vote up 0 vote down

The only way I know of doing this is to create your own task that would allow you to lock on a global mutex, and then another task to unlock it. These new tasks can either be build separately and added to NAnt by copying dlls into NAnt\bin folder, or by extending NAnt directly from your build files

The information to get you started is found on <script/> Task

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.