[Nant-users] Executing oracle scripts through NANT

2005-11-06 Thread Shelly Midha
  I want to execute oracle db scripts for creating/modifying DB objects through NANT build file.   Has anybody done it ?   Thanks Shelly

RE: [Nant-users] Solution task and VSSGET

2005-09-18 Thread Shelly Midha
But it has already been identified as a bug in vssget task of NANT that if we try to use vssget with label specified in the argument, it doesn't work. Vssget works fine if we don't specify a label. Below is the link for more reference **

RE: [Nant-users] Setting Environment paths in NANT

2005-09-05 Thread Shelly Midha
Title: Message   Hi Tim   I'm using the following code snippet for updating the environment variable. It works fine for me.      
      
   public static void ScriptMain(Project project)
   {
string x = project.Properties["sys.env.x"]

RE: [Nant-users] Differential builds

The other solution could be to define a new build configuration as follows in .Net IDE 1. Go to Build-> Configuration Manager 2. Select 'New' from the 'Active Build Configuration' drop down list. 3. Give it a name. 4. Select Debug/Release from the 'Copy Settings From' drop down list. 5. Click '

RE: [Nant-users] Error while compiling java file using javac in NAnt script?

nvironment variable Shelly -Original Message----- From: Shelly Midha Sent: Monday, August 08, 2005 9:57 AM To: 'Kiran Kumar'; nant-users@lists.sourceforge.net Subject: RE: [Nant-users] Error while compiling java file using

RE: [Nant-users] Error while compiling java file using javac in NAnt script?

-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kiran Kumar Sent: Thursday, August 04, 2005 2:19 P

Recall: [Nant-users] Error while compiling java file using javac in NAnt script?

Title: Recall: [Nant-users] Error while compiling java file using javac in NAnt script? Shelly Midha would like to recall the message, "[Nant-users] Error while compiling java file using javac in NAnt script?".

RE: [Nant-users] Error accessing VSS

    You need to install VSS client on the machine where NAnt script is running. I've expeienced the same problem in the past and was resolved after installing VSS clinet on the build machine.   Thanks Shelly     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan DavisSen

RE: [Nant-users] Automating MCMS build through NAnt

eate the "sdo" package for a site(proprietry for MCMS) as part of build and using the package to deploy the site on a production server. Please let me know if more information is required, as MCMS is something which is not discussed too often in this forum. Thanks & Regards She

[Nant-users] Automating MCMS build through NAnt

  We are looking to automate the MCMS 2002.   Any pointers for the same will be helpful.   Thanks & Regards Shelly

RE: [Nant-users] How to maintain property files?

I've not used ANT, so no clues how it is used in ANT   But, I've used a external property file in my project as build.properties(just change the extension). I'm including the property file in the build target file        after declaring the , before defining any targets.   Hope this helps

RE: [Nant-users] Error while compiling java file using javac in NAnt script?

nks Shelly -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 11:25 PM To: 'Troy Laurin'; Shelly Midha Cc: nant-users@lists.sourceforge.net Subject: RE: [Nant-users] Error while compiling java file using javac in NAnt script? > -Origi

[Nant-users] Error while compiling java file using javac in NAnt script?

  I'm compiling a set of java files using the following command in NAnt file       and get the following error:    [exec] E:\Temp\Agents\java\com\sa\ea\app\automapper\AMDBRecord.java:572: cannot resolve symbol [exec] symbol  : variable ErrorLevel [exec] location: class com.sa.ea

RE: [Nant-users] Why use Nant?

In addition to all this, database builds can also be automated. For this one has to write a nant target that executes the sql script files instead of executing the scripts manually one by one. Shelly -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EM

[Nant-users] returns multiple node values

  I'm using to read xml configuration file. I want to retreive the 'value' for given value of   When using as in the follwoing target,                     XML file --- ***          DATA_FILE

[Nant-users] Replacing variables in script files

  I want to run a set of sql scripts while releasing the application. These sql scripts contain certain variable that need to be replaced while executing the query. A sample statament is:   "SELECT * FROM  ...vNewHire hr"   Where I want to replace ,, with the respective values stored as

RE: [Nant-users] error in task

PROTECTED] Sent: Tuesday, May 17, 2005 8:16 AM To: Shelly Midha Cc: nant-users@lists.sourceforge.net Subject: Re: [Nant-users] error in task On 5/16/05, Shelly Midha <[EMAIL PROTECTED]> wrote: > > I 'm geeting the an error while running the foll

[Nant-users] error in task

 I 'm geeting the an error while running the following target: *** **

RE: [Nant-users] task cannot add files to SourceSafe

- From: Selke, Anthony [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 5:02 PM To: Shelly Midha; nant-users@lists.sourceforge.net Subject: RE: [Nant-users] task cannot add files to SourceSafe I'm going to go out on a limb here and suggest that the problem lies somewhere near line 1

[Nant-users] task cannot add files to SourceSafe

  I’m getting the following error while trying to add a file in vss using Nant Contrib -0.85-rc2 Add-build-package-invss:   BUILD FAILED   E:\Projects\EASS\Frameworks\BuildAndRele

[Nant-users] including files in a zipfile using task

I want to include files in an existing zip file using task, based on a specific criterion.   If I include the condition with in the task, it is not supported. I’ve written a separate target that includes files in the zip.   Every time this target is called, it overwrites the zip file

[Nant-users] How to split a comma separated string into property values

  I've defined a property as follows in a property file:     There can be other options that I want to include in the list.   I want to use the added options in the filelist as mention in the following task, wherein I'm mentioning each possible option explicitly.     Is the