up vote 2 down vote favorite
share [g+] share [fb]

I'm using nant to build our product and have written a custom task to notify our helpdesk system that a new build is available.

I've used nant to build the custom task and also to copy the custom nant task assembly into the nant folder so it's loaded automatically.

Worked fine the first time I ran the build.

The second time I ran the build the copy task failed because nant has loaded the custom task assembly and locked the file. Grrr.

How can I get this to work?

link|improve this question
and the question is? – Mitch Wheat Jul 7 '09 at 12:09
Edited to what I think the question is :) – Matt Howells Jul 7 '09 at 12:27
feedback

1 Answer

up vote 3 down vote accepted

You don't need to copy the assembly to the NAnt folder, just place the following at the top of your build script:

<loadtasks assembly="path\to\MyAssembly.dll" />
link|improve this answer
Ah, nice one. I didn't think to look for a task. – robaker Jul 7 '09 at 13:11
feedback

Your Answer

 
or
required, but never shown

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