You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by Ron Grabowski <ro...@yahoo.com> on 2006/02/26 05:17:10 UTC

/log4net/xdocs/build.xml - build failed

Is NAnt 0.85rc3 the recommended NAnt version to build things? build.cmd
compiled everything ok but this failed:

"
C:\Projects\log4net\xdocs>nant /f:build.xml
NAnt 0.85 (Build 0.85.1932.0; rc3; 4/16/2005)
Copyright (C) 2001-2005 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///C:/Projects/log4net/xdocs/build.xml
Target framework: Microsoft .NET Framework 1.1
Target(s) specified: site


BUILD FAILED

C:\Projects\log4net\xdocs\build.xml(10,3):
The <path> type does not support the nested build element \"fileset\".

Total time: 0 seconds.
"

Here's the documentation for the path element:

 http://nant.sourceforge.net/release/latest/help/types/path.html

This is the element that is failing:

 <path id="site.classpath">
  <fileset dir="${logging-site}/lib">
   <include name="*.jar" />
  </fileset>
 </path>

According to the documentation, a path node can only contain a
pathelement node. A pathelement cannot contain a fileset node.

These changes would be for LOG4NET-63.