Hello,
From the same source files, I need to create a couple of builds for different frameworks, different debug values, ... and 1 with a doc.


So I define the main build:

<task name="build" ....></task>

Then, for each build I want to create, I set-up the properties and do a <call> to "build":
<target name="debug"...>
<property name=".... />
<call name="build" />
</target>


This way works fine, except to generate the doc: I need to be able to switch from
<csc target="exe" output="...">...</csc>
to
<csc target="exe" output="..." doc="...">...</csc>


I don't know how to do that inside "build"

Any idea?

Thank you
Julien


------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _______________________________________________ Nant-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to