Re: [Nant-users] Usage question

2005-11-30 Thread Ian MacLean
Robert Schneider wrote: 4. Is there any further documentation how to use nant? I search for more general information about nant. If the wiki would work could I find there any other documentation? Will anyone make the wiki work again? I'm working on getting the wiki working again. We've had

Re: [Nant-users] Usage question

2005-11-30 Thread Gary Feldman
Robert Schneider wrote: 1. I have done all with a normal editor. Xml doesn't seem to be advantageous in my case. How could I benefit from the xml format? What do you do with it? XML is a pretty hideous language for human use. I seem to remember someone saying a while back that the inventor

Re: [Nant-users] double quotes in buildfile

2005-11-30 Thread Gary Feldman
Thibaut Barrère wrote: Hi Koen use " inside " (ie : OriginalValue="value="true""). The double quote is a special character in XML and must be escaped. See this page http://www.mountaindragon.com/html/iso.htm for more informations. It's better to just use single quotes for the XML quotes,

Re: [Nant-users] Usage question

2005-11-30 Thread si
Hi Robert, > 1. I have done all with a normal editor. Xml doesn't seem to be > advantageous in my case. How could I benefit from the xml format? What > do you do with it? I've worked on build files in both Eclipse and Visual Studio, it makes it a bit nicer than a normal editor in my opinion. Als

Re: [Nant-Users] Link Error - solution task

2005-11-30 Thread Gilles DEVAUX
Hi I had the same problem and I found a solution:   While you don’t need to include your static library “staticlib.lib” in the “Configuration Properties -> Linker -> Input -> Additional Dependencies” for VC++ to make the link nAnt needs it. Just add your additional dependencies in the p

[Nant-users] Usage question

2005-11-30 Thread Robert Schneider
Now I'm working with nant for several weaks. I have accomplished to create a build file somehow. But I'm not really happy with it. Because I know this has mainly something to do with the lack of knowledge I'd like to ask the following questions: 1. I have done all with a normal editor. Xml doesn't

Re: [Nant-users] double quotes in buildfile

2005-11-30 Thread Thibaut Barrère
Hi Koen use " inside " (ie : OriginalValue="value="true""). The double quote is a special character in XML and must be escaped. See this page http://www.mountaindragon.com/html/iso.htm for more informations. cheers Thibaut-- [blog] http://www.dotnetguru2.org/tbarrere 2005/11/30, Koen Mayens <[EM

Re: [Nant-users] double quotes in buildfile

2005-11-30 Thread William_Martin
Because it's an XML file, you need to escape the quotes within attribute values.  try: HTH, Bill Koen Mayens <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 30/11/2005 09:41                 To:        nant-users@lists.sourceforge.net         cc:                 Subject:        [Nant-us

[Nant-users] double quotes in buildfile

2005-11-30 Thread Koen Mayens
Hi, I'm quite new to nant, I have a small problem but can't find a solution. I have a function which replaces text in a textfile but a having trouble with the double quotes. In the task a have 2 attributes which are OriginalValue and ReplaceValue. Now I want to do something like this: Then I g