0

I had to move from nant-0.86 to nant-0.92

This part of the code now fails with: Invalid element <checksum>. Unknown task or datatype.

<target name="make_one_cksum">
   <!--  <echo message="ECHO za md5 ${filename}" /> -->
   <checksum algorithm="MD5" fileext="MD5_nov">
      <fileset>
         <include name="${filename}"/>
      </fileset>
   </checksum>
</target>

Any suggestions to make this work again?

no9
  • 6,424
  • 25
  • 76
  • 115

1 Answers1

1

You will need to update your NAnt.Contrib.Task to 0.93.

Requirements Assembly: NAnt.Contrib.Tasks (0.93.5041.0)

http://nantcontrib.sourceforge.net/nightly/latest/help/tasks/checksum.html

Geddon
  • 1,266
  • 1
  • 11
  • 31