[Nant-users] VisualBuildPro to Nant converter

2004-11-03 Thread Arnette, Bill
Has anybody done an XSLT or script for converting a VisualBuildPro file to Nant? TIA, Bill --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database

RE: [Nant-users] HOWTO set environment variables in Nant scripts?

2004-11-03 Thread Bill Arnette
> -Original Message- > From: Gert Driesen [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 04, 2004 1:34 AM > To: Arnette, Bill; [EMAIL PROTECTED] > Subject: RE: [Nant-users] HOWTO set environment variables in > Nant scripts? > > > Bill, > > Just use the child element of : > >

RE: [Nant-users] HOWTO set environment variables in Nant scripts?

2004-11-03 Thread Gert Driesen
Bill, Just use the child element of : Note: we might change the syntax in the near future, as we're planning on adding a more powerful construct to specify environment values (that would also include better support for PATH-like environment variables). Ger

[Nant-users] HOWTO set environment variables in Nant scripts?

2004-11-03 Thread Arnette, Bill
In my first attempt at using Nant for VS.Net 2003 C++ builds, I am execing out to devenv rather than using the solution task (neither the solution task nor slingshot doesn't seem to handle my projects very well). For automated builds, I would like to set the INCLUDE, LIB, etc environment variabl

RE: [Nant-users] solutions task skips everything

2004-11-03 Thread Gert Driesen
Ben,   Can you send me a small repro for this issue ?   Are you using a VS.NET 2002 solution ?   Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben MathewsSent: donderdag 4 november 2004 0:32To: [EMAIL PROTECTED]Subject: [Nant-users] solutions task skip

RE: [Nant-users] Issues with installation of NAnt 0.84

2004-11-03 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Butler, Mark A Mr IPI Gramm Tech > Sent: woensdag 3 november 2004 23:38 > To: [EMAIL PROTECTED] > Cc: Kevin Williams; Duraiswami, Prabhuram > Subject: RE: [Nant-users] Issues with installation of

RE: [Nant-users] Issues with installation of NAnt 0.84

2004-11-03 Thread Butler, Mark A Mr IPI Gramm Tech
Would someone PLEASE fix the help file? I'm reading the archives and see new users having the same problem over and over. Why would I think it's the help file. BECAUSE THAT'S WHAT IT TELLS YOU TO DO! Getting Started [This is preliminary documentation and subject to change.] This topic wil

[Nant-users] replace only part of the attribute.

2004-11-03 Thread Burton, Kevin
This I think requires knowledge of XPath and nant as the replacement text is variable. I have a configuration file that looks like:

[Nant-users] solutions task skips everything

2004-11-03 Thread Ben Mathews
I have the solutions task below.         

Re: [Nant-users] Yet more questions.

2004-11-03 Thread Thibaut Barrère
Hi Payton try instead of what you did is actually compare the string "${nant.settings.currentframework}" to "net-1.0", which is always false, instead of retrieving the value of the property. regards Thibaut Barrère --- This SF.Net em

[Nant-users] Yet more questions.

2004-11-03 Thread Byrd, Payton
Title: Yet more questions. I'm using today's nightly build.  I'm having a problem with the following code:                     [Nant-users] Problem with GAC-UNINSTALL task
Title: Problem with GAC-UNINSTALL task I am making a generic build file that depends on the ability to install and uninstall assemblies from the GAC via wildcards.  It appears the new assemblies list and assembly types do not support wildcards.  This is critical for publisher policy files sinc

RE: [Nant-users] Slingshot Missing from Nightly Builds?

Title: Slingshot Missing from Nightly Builds? Payton,   This should be fixed in the next nightly build.   Thanks,   Gert From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Byrd, PaytonSent: woensdag 3 november 2004 20:17To: '[EMAIL PROTECTED] Sourceforge. Net'Subje

[Nant-users] Slingshot Missing from Nightly Builds?

Title: Slingshot Missing from Nightly Builds? I'm trying to get the most recent versions of NAnt and NAntContrib running, but I cannot build the 11/3/04 snapshot of NAntContrib to build because the entire Tools directory is missing.  Where can I get this? Payton Byrd Trane eBusiness QED Tea

RE: [Nant-users] ... 0.85

Hey all,   I did some "debugging".   It appears that if the xmlns project attribute is removed from the project.build's project task then it will work.   Not sure why having xmlns="http://nant.sf.net/schemas/nant-0.85.win32.net-1.0.xsd" in the project task will 'cause the errors.   Maybe so

Re: [Nant-users] ... 0.85

Well hot damn... As Gary notes below, you have to have identical default namespaces registered in the xmlns.  I hadn't listed one in the example and in my real scripts, I didn't need to change anything in the SystemInfo.build, so i hadn't changed the namespace either.  thanks. Original Message

RE: [Nant-users] VB6 build dependencies

Ok, I'll send it zipped up after work. I'll throw in the unit tests for one of the drop in classes that parses the command line arguments. If you want to run these tests you'll need to download vbUnit3, otherwise they should help just to figure out how this drop in class works. -Original M

Re: [Nant-users] ... 0.85

>From: "Ryan Cromwell" <[EMAIL PROTECTED]> >Sent: Wednesday, November 03, 2004 8:58 AM The "has not been loaded" messages occur as a result of using the -v (verbose) option, and can safely be ignored. > Command Line: Nant -t:net-1.1 /k:net-1.1 /f:project.build -v Are you sure this is what was ac

RE: [Nant-users] ... 0.85

Actually - it did :-). I replaced asdf with dosomething in the email to avoid the confusion in the thread. If you look at the cmd line and the 2 build files, you'll notice 'asdf' is referenced no-where. Here's the direct output with the below files - notice that the dosomething this time.

RE: [Nant-users] ... 0.85

You're asking NAnt to execute target asdf, which doesn't exist in any of your build files. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ryan CromwellSent: Wednesday, November 03, 2004 3:58 PMTo: [EMAIL PROTECTED]Subject: [Nant-users] ... 0.85 I’m beg

RE: [Nant-users] VB6 build dependencies

Me also Christian! I think our developers would find this quite helpful. Thanks, Eric --- Subbu Balakrishnan <[EMAIL PROTECTED]> wrote: > Hi Christian > > Your app is more than welcome to come roost in my > hard drive! We use our > product installer to create our COM+ Application for > regress

[Nant-users] ... 0.85

I'm beginning the journey of upgrading our build scripts to 0.85 in anticipation of a release coming in the near future. I've run into a road block though... it appears is not working at all. Take a look at the two build files below and let me know if I'm doing something odd - these scripts work

RE: [Nant-users] VB6 build dependencies

Guys, this is really helpful of you. I got a nasty feeling that the database side of things are going to suck my time (and my life no doubt) away over the next week[end] or two so I not sure how much I'm going to contribute to the work already done. Maybe to make amends I can contribute a consol

RE: [Nant-users] timeout Attribute?

Gert, >>>the "resultproperty" attribute will be set the the string value "-1000". Thanks, Merrill --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best