build failed executing nant - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:46:34Zhttp://stackoverflow.com/feeds/question/507064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/507064/build-failed-executing-nant0build failed executing nantChris Conway2009-02-03T13:30:54Z2009-03-16T01:36:11Z
<p>Hi all. I've got a nant build script (.86 beta) and it is telling me this:</p>
<blockquote>
<p>BUILD FAILED</p>
<p>Failed to initialize the 'Microsoft
.Net Framework 2.0' target
framework.</p>
<p>The process cannot access the file
'C:\Users\cconway\AppData\Local\Temp\tmp25E3.tmp'
because it is being used by another
process.</p>
</blockquote>
<p>This file does not even exist on my machine. Does anyone know the cause of this? Rebooting seems to allow me to run the script once successfully, but every time after that I get this message (though the name of the tmp file changes per reboot).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/507064/build-failed-executing-nant/507078#5070781Answer by Anton Gogolev for build failed executing nantAnton Gogolev2009-02-03T13:37:01Z2009-02-03T13:37:01Z<p>Are there any third-party tasks which might leave temp files open or keep running in the background, thus leaving file locked?</p>
http://stackoverflow.com/questions/507064/build-failed-executing-nant/507523#5075230Answer by Andy Whitfield for build failed executing nantAndy Whitfield2009-02-03T15:22:40Z2009-02-03T15:22:40Z<p>Maybe try <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">sysinternals process monitor</a> which will allow you to see the process which has the handle on this file.</p>
http://stackoverflow.com/questions/507064/build-failed-executing-nant/543575#5435750Answer by Joshua Cauble for build failed executing nantJoshua Cauble2009-02-12T21:56:52Z2009-02-12T21:56:52Z<p>Also, make sure that you have all the right versions of .Net installed and they are the correct ones (SDK vs Runtime). If you open the config file for nant you can see where it expects the .net version to be go check to make sure it's there and that you can see hte compiler methods (csc, vbc, etc). So it could have something that is trying to find it but it's not there or the pathing is off. </p>
<p>It is beta so there could even be a typo in the config file. </p>
http://stackoverflow.com/questions/507064/build-failed-executing-nant/648969#6489690Answer by Chris Conway for build failed executing nantChris Conway2009-03-16T01:36:11Z2009-03-16T01:36:11Z<p>The answer is my anti-virus. I should have tried disabling that first! Once I disabled it, everything worked like a charm.</p>
<p>Hope this helps someone.</p>