Title: Message
Hello,
 
I was wondering if there was any way to modify a FileSet once it has been created.  For instance, if I had this fileset:
<fileset id="one">
   
<include="onefile.dll"/>
</fileset>
and I wanted to merge it with another FileSet:
<fileset id="two">
   
<include="twofile.dll"/>
</fileset>
I could do that with a function or by doing something like:
<fileset id="one">
    <include="onefile.dll"/>
</fileset>
 
<fileset id="two" refid="one">
    <include="twofile.dll"/>
</fileset>
I tried this, but it didn't seem to work.  It only included the files in the first fileset.
 
 
Thanks,
Leo Hart

Reply via email to