Arnette, Bill wrote:

When writing a build file that does everything from checking out the source to creating the installation package, it would be nice if you could run a target from the command line without running the dependencies. Is this possible now?

If you really need this ability - which implies that your target really
*doesn't* have dependencies - it's easy enough to do, using the <call> task:

    <target name="fooWithDependencies" depends="bar,bletch">
        <call target="foo"/>
    </target>
    <target name="foo">
        <!-- do something useful -->
    </target>

--
Edmund Schweppe
President, Firepool Consulting, Inc.
(978) 233-5404 - http://www.firepoolconsulting.com



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Nant-users mailing list
Nant-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to