[Nant-users] XmlPeek and XML special chars....

2005-05-12 Thread Thomas Tomiczek
Title: XmlPeek and XML special chars Hello, I am trying to use XmlPeek to extrace certain copyright information from a xml document. This does contain the "&" special symbol, so it must be encoded as "&". Xmlpeek does not seem to decode it - I get the XML raw form (&) in the resulti

Re: [Nant-users] Dynamically execute a target when it exists....

2005-05-12 Thread Ian MacLean
Thomas Tomiczek wrote: Ok, now things get intersting. Is there any way to execute a target from within a task? you could if you write your own custom task. Tasks have complete access to the Project object and its list of Targets. Ian I try to get rid of the "additional" .build files. My idea i

[Nant-users] Dynamically execute a target when it exists....

2005-05-12 Thread Thomas Tomiczek
Title: Dynamically execute a target when it exists Ok, now things get intersting. Is there any way to execute a target from within a task? I try to get rid of the "additional" .build files. My idea is: * Every project has a central .build file, that includes the "main" build file

Re: [Nant-users]

2005-05-12 Thread Gary Feldman
Ian MacLean wrote: I'll add a note that the included file also needs to be valid xml. Specifically, it needs to be a valid NAnt build file by itself, with the element as the document root element. I think this is the part that confuses people. One could certainly write an include file that is

Re: [Nant-users] Dynamically execute a target when it exists....

2005-05-12 Thread Gary Feldman
Ian MacLean wrote: Thomas Tomiczek wrote: Ok, now things get intersting. Is there any way to execute a target from within a task? you could if you write your own custom task. Tasks have complete access to the Project object and its list of Targets. That's unnecessary. Just use the task. Gary --

[Nant-users] Documentation error (not finding it): failure target.

2005-05-12 Thread Thomas Tomiczek
Title: Documentation error (not finding it): failure target. Is there a special target I can set up in case a build error happens? My issue: In my central build task there is a possibility that some of the files do get checked out during build. In case of an error happening, I must roll

RE: [Nant-users] Documentation error (not finding it): failure target.

2005-05-12 Thread Foster, Richard - PAL
Title: Documentation error (not finding it): failure target. Thomas,   Try in the "Properties" area: http://nant.sourceforge.net/release/latest/help/fundamentals/properties.html   nant.onfailure is what you're looking for.   Regards, Richard From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [Nant-users] Documentation error (not finding it): failure target.

2005-05-12 Thread Ivo Limmen
See: http://nant.sourceforge.net/release/latest/help/fundamentals/properties.html You can use the nant.onfailure & nant.onsuccess properties. On 5/12/05, Thomas Tomiczek <[EMAIL PROTECTED]> wrote: > > > Is there a special target I can set up in case a build error happens? > > My issue: >

[Nant-users] please unsubscribe me

2005-05-12 Thread nilesh kukreti
hi, I want to unsubscribe from mailing list please do needful. Regards Neelash Kukreti Yahoo! India Matrimony: Find your life partner online Go to: http://yahoo.shaadi.com/india-matrimony

[Nant-users] Bug report - nant solutions task blowing on "odd" file names....

2005-05-12 Thread Thomas Tomiczek
Title: Bug report - nant solutions task blowing on "odd" file names does not work if an item has a special char in it's path. In our case we just blew on a ressource named "topic-pinned&locked.gif". The entry in the csproj looked like this: RelPath = "Resources\topic-pinned&lo

[Nant-users] Referenced Assembly ... could not be loaded

2005-05-12 Thread Eugene Ventimiglia
I'm getting a strange error while building my solution:      outputdir="${outdir}">    http://localhost/html_77/html.csproj" path="${slndir}\html\html.csproj" />       Produces the error:  [solution] Referenced assembly "C:\temp\nant\source\MusiKube\obj\Release\MusiKube.dll" could n

RE: [Nant-users] Bug report - nant solutions task blowing on "odd" file names....

2005-05-12 Thread Gert Driesen
Title: Bug report - nant solutions task blowing on "odd" file names Thomas,   This is by design. We always expect the project files to be valid XML. This is also mentioned on the task doc page (http://nant.sourceforge.net/release/latest/help/tasks/solution.html).   Gert From: [EMA

[Nant-users] Syncing code with VSS?

2005-05-12 Thread Pierce
Hi, I'm looking into the possibility of remaking my nightly build process (which is currently a bunch of messy perl scripts) with NAnt. I've only dicovered NAnt recently so I don't know much about it yet. So far it looks like it might be a good fit but I'm having trouble finding documentation on

[Nant-users] Creating a custom task in Jscript?

2005-05-12 Thread Norman Morse
First, thanks to Ian MacLean for answering my initial question about using Jscript with a task!