RE: [Nant-users] Has anyone tried the new task?

2005-04-19 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Morris, Jason > Sent: woensdag 20 april 2005 7:47 > To: nant-users@lists.sourceforge.net > Subject: [Nant-users] Has anyone tried the new task? > > I grabbed the latest nantcontrib and nant, but

[Nant-users] Has anyone tried the new task?

2005-04-19 Thread Morris, Jason
I grabbed the latest nantcontrib and nant, but the task keeps throwing errors when I try to do the example that is in the docs.

Re: [Nant-users] Nant and NDoc

2005-04-19 Thread Ian MacLean
Julien Sobrier wrote: Hello, when I create a documentation with the NDoc GUI, I need 2 types of files: * the assemblies * the XML files created by the compiler for each assembly Then I associate each assembly with its XML file in the GUI and generate the doc. I now try to do the same thing with N

[Nant-users] Nant and NDoc

2005-04-19 Thread Julien Sobrier
Hello, when I create a documentation with the NDoc GUI, I need 2 types of files: * the assemblies * the XML files created by the compiler for each assembly Then I associate each assembly with its XML file in the GUI and generate the doc. I now try to do the same thing with Nant. I looked at the N

Re: [Nant-users] PATH not set when running nant from a Service

2005-04-19 Thread Ian MacLean
Rainey, Mark (Cleveland) wrote: Thanks for the contribution Troy but the service is running as mydomain/myself so that is can access environment variables and the network. I still wonder why I can use environment::get-variable('PATH'). That returns the path but when I echo the ${sys.env.PATH} varia

[Nant-users] task speed-up of resx compilation

2005-04-19 Thread Gert Driesen
Hi, As a last "present" before my vacation, I've committed some changes for the task to cvs that will speed-up resx compilation dramatically (inspired by, but not really based on, a patch provided by Christian Leh). These changes have not been tested thoroughly, but they did not cause any regres

RE: [Nant-users] Input from file

2005-04-19 Thread Sandeep
Hi Eric, You can try foreach task to read lines from a file: You can read different values from that line using a delimiter or you can read the entire line. Regards, Sandeep -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Tue

RE: [Nant-users] Input from file

2005-04-19 Thread Nau, Michael
http://nant.sourceforge.net/release/latest/help/tasks/loadfile.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Tuesday, April 19, 2005 11:24 AM To: Nant Users Subject: [Nant-users] Input from file I'm trying to do something fairly

RE: [Nant-users] Input from file

2005-04-19 Thread Selke, Anthony
Look at the task here: http://nant.sourceforge.net/release/latest/help/tasks/loadfile.html HTH Tony -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Fetzer Sent: Tuesday, April 19, 2005 2:24 PM To: Nant Users Subject: [Nant-users] Input from file

[Nant-users] Input from file

2005-04-19 Thread Eric Fetzer
I'm trying to do something fairly simple that I've never had need to do. I'd like to get a line from a text file. It's a one line file and I need that line (not an xml file). Is there already a task to do that, or do I use script; and if script, how do I place that info in a property... Thanks,

[Nant-users] Processing directives within nodes.

2005-04-19 Thread Selke, Anthony
Okay, I have a generic/global build file that I think is very clean and nearly works. The only limitation I have now is that Nant doesn't recognize/utilize loops within the node. I am willing (and probably able) to make the changes to Nan

RE: [Nant-users] Get VSS Labelled version

2005-04-19 Thread Craig Wagner
Title: RE: [Nant-users] Get VSS Labelled version You may be running into this bug. I had the same problem last year when I first started working with NAnt and the vssget task. Took forever to find this article.   http://support.microsoft.com/default.aspx?scid=kb;en-us;837417 From: Ransel Lop

RE: [Nant-users] Get VSS Labelled version

2005-04-19 Thread Ransel Lopez Mena
Title: RE: [Nant-users] Get VSS Labelled version Hello everyone,   It looks like the VSS has a bug, because I can see the folder creation but for some reason there is nothing inside them (No files). When I try to do the same from inside VSS I get Version not found errors and I can see that ev

RE: [Nant-users] Get VSS Labelled version

2005-04-19 Thread Craig Wagner
Title: RE: [Nant-users] Get VSS Labelled version         localpath="..\..\..\..\libraries\dotNET\Microsoft\EnterpriseLibrary\bin"    replace="true"    removedeleted="true"    dbpath="${vssPath}"    version="${build.label}"  path="$/Appli

RE: [Nant-users] Trying to abstract the section.

2005-04-19 Thread Selke, Anthony
> Does CI mean "check in " or "continuous integration"? Sorry ... continuous integration, though I am doing my testing running Nant directly from the command line. > NAnt only deals with the if/unless/ifnot control > facilities at the task level. Ouch. I really hoped to avoid building the file

Re: [Nant-users] Trying to abstract the section.

2005-04-19 Thread Gary Feldman
Selke, Anthony wrote: I am putting together a CI build process and trying to do so in such a way that it is as simple as possible to add new projects. Does CI mean "check in " or "continuous integration" (not that it's really relevant to the question)? All of our projects are done in Visual Stud

[Nant-users] Trying to abstract the section.

2005-04-19 Thread Selke, Anthony
I am putting together a CI build process and trying to do so in such a way that it is as simple as possible to add new projects.   All of our projects are done in Visual Studio .NET and I use the tag to easily generate the build files.  Many of our solutions contain one or more web applica

RE: [Nant-users] Get VSS Labelled version

2005-04-19 Thread Bert Robbins (Documentum)
Title: RE: [Nant-users] Get VSS Labelled version I will second this request. I put in a request to the nant-contrib enhanment/bug DB. It appears that nant-contrib could handle labels with a get request but that the vssget task does not process a label-name like the vsslabel task does. Bert

RE: [Nant-users] PATH not set when running nant from a Service

2005-04-19 Thread Rainey, Mark (Cleveland)
Thanks for the contribution Troy but the service is running as mydomain/myself so that is can access environment variables and the network.  I still wonder why I can use environment::get-variable('PATH'). That returns the path but when I echo the ${sys.env.PATH} variable it says nothing is se