NAnt doesn't recognize patternset type
- by veljkoz
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?