Hi, I'm trying to understand how I go about designing my .build file so that I can do complete builds as well as patches. The following is an example of the build file:
<target name="fullbuild" depends="a,b,c,d"> <target name="a"> <target name="b" depends="a"> <target name="c" depends="b"> <target name="d" depends="c"> If I run the "fullbuild" target a,b,c and d will all be recompiled. However if something in target "b" changes I want to be able to compile everything downstream from target b (ie b,c,d) but I am unsure how to do this. I could do a full build every time something changed however this would require all the software to be redeployed. I only want to deploy the assemblies that are affected by the change. Any help would be greatly appreciated. Thanks Ben ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Nant-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-developers
