R – nant scripts written to read values from .xls

cruisecontrol.netnant

Is there anyway by which we can read a value from an .xls file using nant scripts.The nant scripts should ask the input from the user and based on the inputs the nant.build should search the .xls file and when it sees the match,it should copy the corresponding mail ID and echo that mail ID to some other file and that echoed value should be placed in the mail section of the cruise control.NET .

Please get back to me for any more clarifications

Thanks
GNR

Best Answer

You should write an NAnt extension. It is relatively easy to do.

See this tutorial here

As an example project see my question here and here.

Related Topic