Project Names for Ant Build Files

August 6th, 2009

A quick note on FDT and the Ant panel - when you have multiple project buildfiles, don’t forget to give the buildfile a name attribute. It’ll help distinguish one from the other:

1
<project default="compileAll" name="moonlanding">

This way in the Ant panel you will see the project names, like:

  • moonlanding
  • garage
  • tricolor

instead of:

  • project
  • project
  • project

Leave a Reply