Re: [NAnt-users] Execute a target or task from the command line

2011-08-05 Thread Dominik Guder
Hi, yes this is possible. just put the taget name(s) you want as command line parameters e.g. C:\Projects>nant clean_common_dist will only cleanup C:\Projects>nant clean_common_dist dist will do same as your "all" You might separate your tasks into several targets than you can build whatever y

[NAnt-users] Execute a target or task from the command line

2011-08-05 Thread Paul Collins
Hi I want to execute a specific build package one is everything and the other one is a custom one, currently am creating a build package for everything... target name="all" depends="clean_common_dist, dist" />