RE: Re: [Nant-users] Conditional copy

2004-04-13 Thread sb008515
Ian, Thanks for your response but i'm not quite there yet. I see lots of nant tasks that support the "if" attribute, but I have a hard time finding documentation and/or examples on how to use it. Then there's this page: http://nant.sourceforge.net/nightly/help/tasks/if.html that explains the "if" t

Re: [Nant-users] NAnt taks for VBCommenter

2004-04-13 Thread Ian MacLean
Hi Mike, I got the vb.doc task to work fine. Where are you getting the syntax error ? in your vb code when vbdoc processes it or somewhere else ? The build file I used looks somthing like : note

[Nant-users] two fileset questions

2004-04-13 Thread stj3571-nant
Hi, I have two usage questions. Question #1: - The task only allows one section; however, I would like to use two separate named filesets for references. One fileset will be for references to custom assemblies, while the other will be for BCL assemblies. F

Re: Re: Re: [Nant-users] Conditional copy

2004-04-13 Thread Jaroslaw Kowalski
Try this: http://nant.sourceforge.net/nightly/help/fundamentals/expressions.html http://nant.sourceforge.net/nightly/help/fundamentals/functions.html Jarek - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 10:20 PM Subject: RE: Re: Re: [

RE: Re: Re: [Nant-users] Conditional copy

2004-04-13 Thread de . greef
Jarek,   Thank you for your quick response. I'll give it a try first thing tomorrow.   I'd like to ask again however: is this documented anywhere? I don't quite have the time to trial & error every little thing in nant, which is why I resort to using the mailing list. Some clear examples/docs would

Re: Re: [Nant-users] Conditional copy

2004-04-13 Thread Jaroslaw Kowalski
How about this: Jarek - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 9:58 PM Subject: RE: Re: [Nant-users] Conditional copy > Ian, > > Thanks for your response but i'm not quite there yet. > > I see lots of nant tasks that suppor

RE: Re: [Nant-users] Conditional copy

2004-04-13 Thread de . greef
Ian, Thanks for your response but i'm not quite there yet. I see lots of nant tasks that support the "if" attribute, but I have a hard time finding documentation and/or examples on how to use it. Then there's this page: http://nant.sourceforge.net/nightly/help/tasks/if.html that explains the "if" t

Re: [Nant-users] VS macros

2004-04-13 Thread Gert Driesen
I fixed this is cvs now. This will be available in the next nightly build. Thanks, Gert - Original Message - From: "Noah Davidson" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Cc: "'NAnt Users Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 8:58 PM Subje

RE: [Nant-users] VS macros

2004-04-13 Thread Noah Davidson
It looks like VS uses capital var names, but if I open up my project file in something like notepad they are not case sensitive. It appears the VS to converting the case to display in the IDE. I would have to look into VS macros more to be certain what it is doing. Thanks Noah Davidson -Ori

Re: [Nant-users] VS macros

2004-04-13 Thread Gert Driesen
Noah, NAnt currently does a case-sensitive comparison for the macro's. You should be able to use : $(TargetDir) $(SolutionDir) $(TargetFileName) Does it work in VS.NET when the case does not match exactly ? If so, then I'll update the task accordingly. Thanks, Gert - Original Message --

Re: [Nant-users] VS macros

2004-04-13 Thread Gert Driesen
Noah, This should work fine (at least it should in the 0.85 nightly builds). Can you send me a repro for this ? Thanks, Gert - Original Message - From: "Noah Davidson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 7:51 PM Subject: [Nant-users] VS macros I

[Nant-users] VS macros

2004-04-13 Thread Noah Davidson
I am using the postbuild event in VS.  I am passing $(solutiondir), $(targetdir), $(targetfilename), and $(ConfigurationName) to a .cmd file.  I am trying to use the solution task and specify the projects.  When I run nant I can not seam to define these macros.  How can I use this same proj

[Nant-users] NAnt taks for VBCommenter

2004-04-13 Thread Michael A. Angelo
Does anyone have a clue as to how I can get my .xml doc file to be created with Nant? I tried the VB.DOC nant task, but it looks like it may be broken. I am getting a syntax error on line 1 when I try the VB.DOC Nant task. Any other suggestions? TIA Mike. -

Re: [Nant-users] echo message to file

2004-04-13 Thread Gert Driesen
This was functionality was indeed introduced after the 0.84 release. Currently NAnt does not report an error when using attributes that don't exist on tasks/types, that's why you don't get an error message ... Gert - Original Message - From: "Chris Briesemeister" <[EMAIL PROTECTED]> To: <

RE: [Nant-users] Nant contrib VSSGet version attribute seems to f ail

2004-04-13 Thread Chris Briesemeister
Found the answer to this when looking through the nant-dev mailing list. Apparently VSS 6.0d (which I was using) introduced this bug. There is a hotfix out there for it, which I will use. The problem, for those who haven't seen the original posts, was that you could not do a vssget by version lab

Re: [Nant-users] Conditional copy

2004-04-13 Thread Ian MacLean
take a look at the if attribute on . See the docs at: http://nant.sourceforge.net/nightly/help/tasks/copy.html somthing like : ... Should do the trick Ian Jo De Greef wrote: Hi all, I'm trying to create a task that will copy my binaries to a seperate folder after compilation. I created a csv f

[Nant-users] echo message to file

2004-04-13 Thread Chris Briesemeister
This should be a quick question. I am trying to use Nant to echo a version label to a file. I am using Nant version 0.84. I noticed that the functionality wasn't documented until 0.85 so I am wondering if it was available in 0.84 but was just undocumented. I'd think if it wasn't there at all I

[Nant-users] Conditional copy

2004-04-13 Thread Jo De Greef
Title: Message Hi all,   I'm trying to create a task that will copy my binaries to a seperate folder after compilation. I created a csv file with the list of files to copy and let Nant iterate through it. Depending on the value of a property however I want to decide whether or not to copy th