Re: Re: task issue in ANT

2007-07-02 Thread query
  My project is mainly based on java. For that I am pretty comfortable using ANT tool. I am using , , and only in a few build files. Is there a way to integrate NANT with ANT? I am new to both NANT and apache-ant-dotnet. How can I use apache-ant-dotnet for using , , and tasks in ANT? On T

Re: Re: task issue in ANT

2007-07-01 Thread query
My project is mainly based on java. For that I am pretty comfortable using ANT tool. I am using ,, and only in a few build files. Is there a way to integrate NANT with ANT? I am new to both NANT and apache-ant-dotnet. How can I use apache-ant-dotnet for using ,, and tasks? On Thu, 28 Jun 20

Re: Re: task issue in ANT

2007-06-28 Thread Prashant Reddy
Why not have all the NANT task activities in a separate build file, and simply use task in ANT to launch the NANT process ? There is some evidence in Google (http://www.google.co.in/search?q=nantcall) of building a task to facilitate this. I am not sure how far that effort got to. -Prashant On

Re: task issue in ANT

2007-06-28 Thread Qazwart
No, Nant and Ant are two totally separate tools. Nant I believe is based upon .NET and not Java (which makes sense since it is for .NET applications). However, Nant and Ant do share many of the similar task types and a very similar build.xml file structure. You define project, run "Target

Re: Re: task issue in ANT

2007-06-27 Thread query
  Is it possible to use NANT within ANT just like ant-contrib ? I may need NANT only for,, and tasks. For all other things I am comfortable using ANT tool. On Sat, 23 Jun 2007 David Weintraub wrote : >If you're using Microsoft's .NET framework, you might want to look at >Nant and not Ant. Nan

Re: task issue in ANT

2007-06-22 Thread David Weintraub
If you're using Microsoft's .NET framework, you might want to look at Nant and not Ant. Nant is the .Net equivalent of Ant. Nant has a task which uses the Microsoft Message compiler and a task for compiling VSC++ code. Take a look at: http://nant.sourceforge.net/ and see if this does what you w