What happened to nant.failure becoming nant.onfailure?
 With the final 0.8.3 release, nant.onfailure isn't
working for me (or complaining - nant.failure does
though).  I'll attach a test script.

__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
<project name="TestFail" default="build" >

  <property name="nant.failure" value="onfailure" />
  <property name="nant.onsuccess" value="onsuccess" />
  <target name="build">
    <fail/>
  </target>

  <target name="onfailure">
    <echo>failed</echo>
  </target>

  <target name="onsuccess">
    <echo>successful</echo>
  </target>

</project>

Reply via email to