Hi,

if I pass some properties from one nant skript to another then I can
provide a list of properties. I set the argument inheritall to false
when I call the nant task. But how can I manage things when I want to
pass existing properties that don't have to be created with the call?

Like this? 

<nant buildfile="another.xml" inheritall="false">
   <properties>
      <property name="a" value="${a}"/>
   </properties>
</nant>

Hm... it would look better this way:

<nant buildfile="another.xml" inheritall="false">
   <properties>
      <property name="a"/>
   </properties>
</nant>


Is there a better way?

Greetings,
Robert



-------------------------------------------------------
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