4

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

Noon Silk
  • 54,084
  • 6
  • 88
  • 105
mynkow
  • 4,408
  • 4
  • 38
  • 65

1 Answers1

6

You can delete that. Just found a solution:

<target name="somename" >

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

NAnt docs

mynkow
  • 4,408
  • 4
  • 38
  • 65