Hi All,

I've been looking around on Google and the mailing list archives and can't seem to find a solution for this. I downloaded the latest version of NAntContrib, unzipped it and placed the file from the bin directory directly in my NAnt directory. I then put together a simple build file that looks like:

<project default="run">
  <target="run">
   <svn-update
    destination="Source"
    uri="http://www.mertner.com/svn/repos/projects/gentle";
    recursive="true"
    quiet="true"
    username="anonymoose"
    password="Canada"
    revision="HEAD"
    cache-auth="false"
    config-dir="c:\home"
   />
  </target>
</project>

Straight from the docs. When I run it, I get:

BUILD FAILED

INTERNAL ERROR

System.ArgumentException: Xml node has not been mapped.
   at NAnt.Core.LocationMap.GetLocation(XmlNode node)
   at NAnt.Core.Target.Execute()
at NAnt.Core.Project.Execute(String targetName, Boolean forceDependencies)
   at NAnt.Core.Project.Execute()
   at NAnt.Core.Project.Run()

My guess is that somehow NAnt isn't seeing the contrib dll. I tried adding in a load to the build file as recommended from the docs to no avail.

I am running NAnt 0.84 and the latest NAntContrib.

Thanks for any insight you can provide!

Cory



-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
NAntContrib-Developer mailing list
NAntContrib-Developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to