vote up 0 vote down star

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?

flag
and the question is? – Mitch Wheat Jul 7 at 12:09
Edited to what I think the question is :) – Matt Howells Jul 7 at 12:27

1 Answer

vote up 1 vote down check

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|flag
Ah, nice one. I didn't think to look for a task. – robaker Jul 7 at 13:11

Your Answer

Get an OpenID
or

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