I have a big project here where I created some build files which I use in different scenarios including ccnet. So, I have BF1.build and BF2.build

I just want somewhere in BF1 to call/execute the script from BF2.build

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can delete that. Just found a solution:

<target name="somename" >

<nant>
    <buildfiles>
        <include name="BF2.build" />
    </buildfiles>
</nant>  </target>

NAnt docs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.