Re: [NAnt-users] Need help with returning values to a build script from a custom task.

2011-07-07 Thread Pento, Michael
Hi Jim, Is the value being returned an array of items, or just a single value? Thanks, Mike From: Macdiarmid, James D. [mailto:james.d.macdiar...@saic.com] Sent: Thursday, July 07, 2011 2:53 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Need help with returning values to a build

Re: [NAnt-users] Need help with returning values to a build script from a custom task.

2011-07-07 Thread Macdiarmid, James D.
I'd like to return an array of items so that I can send out a build report with all the ticket and changeset info that was included in the build. Jim From: Pento, Michael [mailto:mpe...@metratech.com] Sent: Thursday, July 07, 2011 4:26 PM To: Macdiarmid, James D.; nant-users@lists.sourcefo

Re: [NAnt-users] Need help with returning values to a build script from a custom task.

2011-07-07 Thread Wilson, Brian
Something along option ii from http://nant.sourceforge.net/release/0.85/help/tasks/script.html Example from site:

[NAnt-users] Need help with returning values to a build script from a custom task.

I'm writing a custom task in C# to get all the associate changesets from TFS for a given workitem to be used in writing a build report. I'm trying to figure out how to return this data back to the build script. Can anyone point me to an example of doing this? Thanks, Jim ---