Hi
all,
I have one build
file (called master.build) that uses the <nant>
task:
<target
name="build">
<nant buildfile="slave.build">
<properties>
<property name="parentBuildfile" value="${nant.project.buildfile}" />
<nant buildfile="slave.build">
<properties>
<property name="parentBuildfile" value="${nant.project.buildfile}" />
</properties>
</nant>
</nant>
</target>
When I check the
value of ${parentBuildfile} inside slave.build, the value is
"c:\projects\slave.build" instead of
"c:\projects\master.build".
Is this intended
behaviour?
Best
regards,
-Jo
