This may be a newbie problem, but I am unable to specify the build target on the command line to nant.

 

Here is the build file:

 

<project name="test" default="test">

             <target name="junk">

                         <echo message="this is not the default" />

             </target>

             <target name="test">

                         <echo message="this is the default" />

             </target>

 </project>

 

‘nant’…. Runs the test target, as expected

‘nant junk’… also runs the test target!!

 

Running 0.85, rc3.

 

Thanks in advance.

Reply via email to