[NAnt-users] Problem with VBC task

2006-10-12 Thread Ramya Niranjan
Hello,   I am facing a problem running the VBC task to build 3 of my projects. I have both .NET FW 1.1 and 2.0 on my machine. When I build Project A and Project B by targetting 1.1 FW, the build goes through fine, but when I build Project 3 (This has reference to Project A.dll and ProjectB.dll), t

[NAnt-users] Include task issue

2006-08-03 Thread Ramya Niranjan
Hello,   I have created an include file called mail.include that contains the following task structure:      property="mailserver" verbose="true" />   property="mailto" verbose="true" />    property="mailfrom" verbose="true" />   property="mailfailure" verbose="true" />   property="mailsuccess" ve

[NAnt-users] task does not redirect URL's

2006-07-25 Thread Ramya Niranjan
Hello,   I am trying to use the mail task to send a particular network share link into a RTF file so that users could click on this link to naviagte to the correct location. But the out always goes as a normal text file. This is what I am trying:     \\hostname\sharename\foldername"/>

[NAnt-users] Info on trycatch task

2006-07-20 Thread Ramya Niranjan
Hello,   I have a query on the trycatch task.   Can I specify a particular type of exception to catch in the catch block. Like for eg in VB.NET if we want to catch a validation exception in a particular block of code we could say something like:   try  //Block of code to execute   catch ex as

Re: [NAnt-users] Running from Visual Studio 2003

2006-07-13 Thread Ramya Niranjan
You have NAntRunner. This runs the NAnt scripts from within VS .NET ide. You can find this plugin at: http://nantrunner.sourceforge.net/   Rgds, Niranjan  On 7/13/06, Dave Paul <[EMAIL PROTECTED]> wrote: You can set up "External Tools" to do the job. I've got ones that callnant with arguments like

Re: [NAnt-users] Question on custom NAnt task

2006-07-12 Thread Ramya Niranjan
Hi Shu,   You could try the task to accomplish what custom tasks do. You can find a lot of information on

[NAnt-users] displaying custom tasks in the intellisense view.

2006-07-11 Thread Ramya Niranjan
Hello,   I have created a couple of custom tasks and they are working fine. I need to display the tasks and the corresponding attributes in the intellisense window in VS.NET 2003 IDE. Could any one tell me how to go about with this?   Thanks and Regards, N

[NAnt-users] Source code documentation.

2006-07-09 Thread Ramya Niranjan
Hello All,   Could any of you point me to some articles on creating custom tasks in NAnt? Is it possible to create Tasks with VB .NET instead of C#.NET?   Thanks and Regards, N - Using Tomcat but need to do more? Need to suppo

[NAnt-users] Setting property after reading from a file.

2006-06-12 Thread Ramya Niranjan
Hello All,   I have a text file info.txt that contains some version specific information like: MAJORVERSION=4.0 MINORVERSION=11 BRANCHINFO=COR   What I need to do is create some properties like majorversion, minorversion and branchinfo in NAnt and assign these values after reading from the txt file

[NAnt-users] NAntRunner configuration.

2006-05-09 Thread Ramya Niranjan
Hello,   I downloaded and installed this new .NET plugin called NAntRunner which allows you to control the build projects from withing the IDE also filtering of the targets is possible. I am able to see this add in displayed under the Tools Menu within my build file project. But runnin the same onl

[NAnt-users] Configure VS.Net 2005 env for Nant script editing.

2006-04-04 Thread Ramya Niranjan
Hello All,   Could some one tell me how to configure the VS .NET 2005 Devenv environment to edit the nant script? Like the one that was done in 2003 env, I have added the build DWORD to the registry key, also created a nant schema and placed it in the packages\schemas\xml folder of .NET 2005. But I

[NAnt-users] Adding variables.

2006-02-20 Thread Ramya Niranjan
Hello,   I wish to add 2 variables using NAnt. any ideas?   Currently this is what i am doing:     This is returning 12. I knwo this is h

[NAnt-users] Delete task not executing

2006-02-16 Thread Ramya Niranjan
Hello,   I am trying to execute the following through my Nant build file:           [NAnt-users] Environment variable issue.
Hi,   I am trying to capture the ERRORLEVEL env variable when a build fails. Ok the scenario is like this. I am trying to execute an MSI build using the exec task and if this fails, then a folder of name .Date.Time.WithErrors has to be created and the MSI package with errors has to be copied here.