vote up 2 vote down star

Hi, 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

flag
@GNR, this would be a duplicate of stackoverflow.com/questions/1021283/…; Please close it. If you want to focus on nant, you could tag the other question so. – nik Jun 20 at 10:22
Nik,I dont find any other option other than using nant.So can un please suggest me any other way as its very important buddy. – GNR Jun 20 at 10:41

3 Answers

vote up 0 vote down

Hi

I'll re-phrase my answer :

"Is there anyway by which we can read a value from an .xls file using nant scripts"

If you are talking about using the 'core' NAnt functionality, which is that funcationality that is provided within the basic installation of NAnt, then I would say "No" or "Not very easily".

You can however extend NAnt using .NET libraries to perform whatever function you want, as long as you can code that function in a .NET language.

So, for you to solve your problems, the steps you need to under-take in my view are :

(a) Write a .NET library with methods that undertake the function(s) you describe

(b) Use the 'extensibility' of NAnt to turn your library in (a) into a custom task you can then call directly from your NAnt script

Obviously, you need to be able to break your problem down so that you can code it for part (a). Once you have done that, part (b) is reasonably trivial, and the tutorial I supplied in the link should easily walk you through this.

link|flag
vote up 0 vote down

Jayden,I had jst gone through the links and it didnt give much as what i needed.i can tell u my idea.I have a error.xml file.My nant scripts should first read the error.xml file and get the .cpp file corresponding to the errors and then this .cpp should be searched in another .txt file which has has the EID and correspdonding mail ID and it should extract the mail ID from this text file and dynamically update the values in ccnet.config file i.e the mailing section addresses

files EID mailID a.cpp E33333 Myname@company.com

b.cpp E44444 Yourname@company.com


So it shopuld extract the mail ID from this text file based on the EID as inputs.

Thanks GNR

link|flag
vote up 1 vote down

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.

link|flag
Jayden,There is a slight change in the question.I want to write an nant script which reads the value from a text file and echo the value to the user? – GNR Jun 23 at 5:48
Regardless, you can write an NAnt extension, then you can do all the coding in C# or VB.NET. – Jayden Jun 23 at 5:58
See my example. It asks for input from the user in the form of a login dialog box. – Jayden Jun 23 at 5:59
Thanks jayden,let me just look into it and get back to you. – GNR Jun 23 at 6:02
Jayden,plz hav a look at below answer section . – GNR Jun 23 at 6:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.