NAnt doesn't recognize patternset type

Posted by veljkoz on Stack Overflow See other posts from Stack Overflow or by veljkoz
Published on 2010-06-18T10:29:20Z Indexed on 2010/06/18 10:33 UTC
Read the original article Hit count: 479

Filed under:
|
|

I've downloaded the new version of NAnt 0.91 Alpha 1 release and it doesn't seem to recognize the patternset as in:

 <?xml version="1.0" encoding="UTF-8" ?>
 <project name="Testing project" 
          default="testMe">
         <patternset id="build.files">
              <include name="*.dll" />
         </patternset>
         <target name="testMe">
             <echo message="hi" />
         </target> 
 </project>

The error I get when running nant /f:mytest.build is:

Invalid element <patternset>. Unknown task or datatype.

Am I missing something?

© Stack Overflow or respective owner

Related posts about build

Related posts about nant