Greets again, folks. I'm wondering if a certain functionality is possibility.
Essentially I have a main .build file, and use it as a central repository for standard properties. I use <nant> with inheritall=true to pass the properties down. <property name="eMails" value="[EMAIL PROTECTED]" /> <property name="MailLogger.failure.notify" value="true" /> <property name="MailLogger.success.notify" value="true" /> <property name="MailLogger.failure.to" value="${eMails}" /> <property name="MailLogger.success.to" value="${eMails}" /> <property name="MailLogger.failure.subject" value="Build ${project::get-name()} failure" /> <property name="MailLogger.success.subject" value="Build ${project::get-name()} success" /> <target name="EvolutionBuild" description="Build system"> <nant inheritall="true" buildfile="product1.section1.build" /> <nant inheritall="true" buildfile="product1.section2.build" /> </target> Now for the issue; I want teach sub build project to be able to fire off it's own status email. I still want the whole thing to stop if anything fails, but I want to be able to see which projects passed, and which one failed. I receive Build Succeeded messages from each one, but it doesn't fire the MailLogger. I guess what I'm asking is there any way to force a flush of the MailLogger queue? Regards, John W. Ellenberger Senior Programmer/Analyst Geac Commercial Systems Division ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users