Re: [NAnt-users] [ANN] compiling solution file is very very slowinnant

2007-03-27 Thread Bonio Lopez
Hi, How long does it take with devenv ${root.dir}\Source_Code\REIOSSolution\REIOS-ServiceLayerAndDependencies.sln /build debug ? IMHO the problem seems to be somehow related to the network storage/traffic. Best regards, Boni _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [NAnt-users] [ANN] compiling solution file is very very slowin nant

2007-03-27 Thread Bonio Lopez
Hi, Compilers just need time for their work.I SUPPOSE, that nant "overhead" is not crucial in your case. If some of your projects are independent, you could try to compile in parallel. Nant natively does not support the parallel compilation. But it could be be easily implemented on top of nant usi

Re: [NAnt-users] Change basedir for target

2007-02-28 Thread Bonio Lopez
Hi Ricardo, try following: 1. put a small nant build file my_build.build in the directory_you_need. 2. In the top nant script write Now ${project::get-base-directory()} will be directory_you_need inside of my_build.build. I am wondering, why nant works like this.P

Re: [NAnt-users] GCC using nant

2006-11-13 Thread Bonio Lopez
#x27;t in there. You can try adding it yourself. The mailing list post is here: http://www.mail-archive.com/nantcontrib-developer@lists.sourceforge.net/msg0 1510.html On Mon, 13 Nov 2006 15:41:22 +0100, Gary Feldman <[EMAIL PROTECTED]> wrote: > Bonio Lopez wrote: >> Hi, >> Ha

[NAnt-users] GCC using nant

2006-11-13 Thread Bonio Lopez
Hi, Has anybody managed to compile C++ projects with gcc using nant a with header files dependency tracking? If yes, may be you want to share the code. Regards, Boni - Using Tomcat but need to do more? Need to support web ser

Re: [NAnt-users] .CAB files creation with NAnt

2006-10-27 Thread Bonio Lopez
Hi, you can use exec task and start devenv.com yourproj.vdproj /build release. Regards, Boni From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Juan Carlos Becerra IreneSent: Freitag, 27. Oktober 2006 00:09To: nant-users@lists.sourceforge.netSubject: [NAnt-users] .CAB files cr

Re: [NAnt-users] Problem using regasm task

2006-08-29 Thread Bonio Lopez
: Mittwoch, 30. August 2006 00:44To: Bonio Lopez; nant-users@lists.sourceforge.netSubject: RE: [NAnt-users] Problem using regasm task Thanks to both you and Gert for responding, but no luck .I modified the Nant.exe.config file and changed the default to an explicit value: It was: I tried

Re: [NAnt-users] Problem using regasm task

2006-08-29 Thread Bonio Lopez
Hi, You could try to set CLR version explicitely: Check that you have regasm in that (or default) clr version. HIH, Boni From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl MalikowskiSent: Dienstag, 29. August 2006 19:22To: nant-users@lists.sourceforge.netSubject: [NAnt-u

Re: [NAnt-users] Extending asminfo Task

2006-08-22 Thread Bonio Lopez
Hi James, I would be also interested to use such task, feel free to give it out for testing :). May be I would prefer to be able to use (test) in the way, that does not conflict with current nant installation, if possible. As far as I understand if you will give to the task "asm_info" name, it wil

[NAnt-users] Using ftp from nant on windows

2006-08-14 Thread Bonio Lopez
Hi, Following shows how to use ftp on windows machines from nant.(May be somebody could need that. )

Re: [NAnt-users] How to read program output into property

2006-08-14 Thread Bonio Lopez
> -----Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bonio Lopez Sent: Montag, 14. August 2006 15:55 To: nant-users@lists.sourceforge.net Subject: [NAnt-users] How to read program output into property Hi, 1. Is it possible to read exec output i

[NAnt-users] How to read program output into property

2006-08-14 Thread Bonio Lopez
Hi, 1. Is it possible to read exec output into a property? I need to compare md hashes of 2 files What is the simplest way to do it 2.Just wanted to let nant admins to know that I have been using WriteRegistryTask and DeleteRegistryTask from Scott Hernandez 2 month now without any problems. I ha

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
No, either use exec and devenv or just csc tasks, and do a dependency tracking manually using task. -Original Message- From: Burgess, Michael [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8. August 2006 19:47 To: Bonio Lopez Subject: RE: [NAnt-users] Factoring out a 'devenv' call

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Yes, ms_build supports VS2005 only -Original Message- From: Burgess, Michael [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8. August 2006 18:13 To: Bonio Lopez; nant-users@lists.sourceforge.net Subject: RE: [NAnt-users] Factoring out a 'devenv' call into 'csc'

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Hi, Here is an example how to use ms_build Regards, Boni -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burgess, Michael Sent: Dienstag, 8. August 2006 14:37 To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Factoring out a 'dev

Re: [NAnt-users] Factoring out a 'devenv' call into 'csc'

2006-08-08 Thread Bonio Lopez
Hi Mike, for VS2003 you can use task for VS2005 ms_build task from Nantcontib. There is also task, but then you will have to track dependencies manually. Regards, Boni From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burgess, MichaelSent: Dienstag, 8. August 2006 12:54To:

Re: [NAnt-users] How to overload targets

2006-08-08 Thread Bonio Lopez
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Feldman Sent: Montag, 7. August 2006 13:57 To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] How to overload targets Bonio Lopez wrote: > Dear all, > ... > Supposed I have Y project, to be build. Y-1 of them are bu

[NAnt-users] How to overload targets

2006-08-07 Thread Bonio Lopez
Dear all, I have a master build file with major targets. There are X targets: build, clean, rebuild, register Supposed I have Y project, to be build. Y-1 of them are build using ms_build and one using my_own.exe clean, rebuild, register ... also differs a bit for some of projects. For example,

Re: [NAnt-users] Dependency tracking

2006-08-04 Thread Bonio Lopez
want. Something like:                                 From "Bonio Lopez" <[EMAIL PROTECTED]>@lists.sourceforge.net Sent by: [EMAIL PROTECTED] 04/08/2006 12:43 To

[NAnt-users] Dependency tracking

2006-08-04 Thread Bonio Lopez
Hi, Supposed I have a compiler my_compiler, which converts files *.my_ext into *.my_compiled In the target I use currently: Is it possible like in gmake create a target, which converts *.ext into *.my_compiled and which knows that *.my_compiled needs only to be recompiled if *.ext changed Than

Re: [NAnt-users] Bug in setting of nant .net version

2006-08-01 Thread Bonio Lopez
Hi Gary, I have a master build file, with default settings, which I include in all projects. So I needed for most projects net-1.1. If for some project I need net2.0 I would set it in the build file of this project. I solved the problem introducing a new property. I.e Thanks for clarification

Re: [NAnt-users] Evaluation of if and unless

2006-08-01 Thread Bonio Lopez
Hi Gert, Regarding your example, my feeling is that there would be very natural, if fileset "files" would be empty and nothing would be copied. I would consider this example as a logical error of the programmer, who created such file. As we have just discussed nant is sequential. So when fileset wa

[NAnt-users] How to use ms_build task of nantcontrib

2006-08-01 Thread Bonio Lopez
Hi, I am trying to use ms_build task from nant contrib. What I need is to compile a configuration ${config} for project ${prj} I have tried: but where is a place for configuration. Thanks a lot, Boni P.S. May we need better examples in the documentation?

[NAnt-users] Bug in setting of nant .net version

2006-08-01 Thread Bonio Lopez
Hi, Following code prints version 1.1 on my PC and ignores overwrite=false. I use nant 0.85 rc4 on windows Regards, Boni "${nant.settings.currentframework}" - Take Surveys. Earn Cash. Influence the Future of IT J

[NAnt-users] Diff task for nant

2006-07-28 Thread Bonio Lopez
Hi, I am looking for a task, which return 0 if text files are identical. (just like a unix diff tool). Is something build in into nant or should I use GNU diff with exec task? Thanks, Boni - Take Surveys. Earn Cash. Influence

Re: [NAnt-users] Recursive call of the build file

2006-07-28 Thread Bonio Lopez
Hi Bob, Still have the same problem. AFAIK delim is a list of chars (see http://nant.sourceforge.net/release/latest/help/tasks/foreach.html, example v) -Original Message- From: Bob Archer [mailto:[EMAIL PROTECTED] Sent: Freitag, 28. Juli 2006 16:02 To: Bonio Lopez; nant-users

[NAnt-users] Recursive call of the build file

2006-07-28 Thread Bonio Lopez
Hi, In following example I would like to recursively call the same build file with changing test_type property. Unfortunately test_type="-1" all the time. What do I do wrong? Thanks, Boni ... -output-- [echo

Re: [NAnt-users] Silent tasks?

2006-07-28 Thread Bonio Lopez
Hi, I would vote for this feature too. The most of xmlpeek/poke output is annoying in my build scenario. Regards, Boni -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gary Feldman Sent: Montag, 17. Juli 2006 01:22 To: nant-users@lists.sourceforge.net Subj

[NAnt-users] Evaluation of if and unless

2006-07-25 Thread Bonio Lopez
Hi, 1. Following code returns a error: An empty string is not a valid value for attribute 'output' of . The workaround would be Is it a supposed behavior and if yes, then what is the recommended approach to avoid the execution of test.outputfile="". 2. Sometimes I use targets to accomplish a

Re: [NAnt-users] Feature request

2006-07-20 Thread Bonio Lopez
Hi Gary, >What happens if you just make a change to p22? How would you rebuild it without rebuilding the rest? I am sorry, but I don't understand where is the difference to the current approach. The nant will run over all projects and see that p1, p11, p12,p13 are not changed. So it will not re

Re: [NAnt-users] Feature request

2006-07-20 Thread Bonio Lopez
) Hope it makes sense, Boni -Original Message- From: Gary Feldman [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 20. Juli 2006 15:13 To: Bonio Lopez Cc: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Feature request Bonio Lopez wrote: >

[NAnt-users] Feature request

2006-07-19 Thread Bonio Lopez
Hi, Meanwhile quite any machine has more then one processor (even Intel with Dual Core and HT). Would not it be nice to add multithreading to nant? As starting point I could imagine to add some attribute to task, like The de

[NAnt-users] Get directory name only

2006-07-19 Thread Bonio Lopez
Hi there, What is the simplest way in Nant to get last directory only. i.e. from c:\XX\YY\ZZ get ZZ Is there any function? So far I find index of "\" and then get substring. But it is a bit ugly. - Take Surveys. Earn Cash. In

[NAnt-users] Syntax of gac-(un)install tasks

2006-07-19 Thread Bonio Lopez
Dear all, May be make the syntax of gac-(un)install Either Or for both? Currently it seems to me (may be I am wrong), a bit unlogical: - Take Surveys. Earn C

Re: [NAnt-users] Synchronizing Visual Studio projects to NAnt build

2006-07-17 Thread Bonio Lopez
Hi Jaroslaw, Why do you create a nant tasks "manually" instead of using solution task ? Is it because VS2005 not supported so far? Is somebody working to support VS2005 solution task? With best regards, Boni -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf O

[NAnt-users] Solution task fails

2006-07-11 Thread Bonio Lopez
Dear all, I have following problem using solution task on com server project. Devenv XXX.sln /build debug works. Any idea? Thanks, [solution] Starting solution build. [solution] Building '' [Debug] ... [midl] Processing C:\\\.i

[NAnt-users] Bug or feature?

2006-07-11 Thread Bonio Lopez
Dear all, Following build file fails with " Expression: SOFTWARE\Microsoft\VisualStudio\${vs_version}\InstallDir ^^ Property 'vs_version' has not been set. " But if remove 'xmlns="http://nant.sf.net/schemas/nant.xsd";' then it work

[NAnt-users] Compile nant using ngen

2006-07-11 Thread Bonio Lopez
Dear all, Just wanted to let you know that nant runs much faster on my machine, after I have compiled nant.exe and most of nant tasks using ngen. With best regards, Boni - Using Tomcat but need to do more? Need to support w

[NAnt-users] Releasing software

2006-07-07 Thread Bonio Lopez
Dear software build experts, Now we have automated release process with nant. I have a general question about release strategy. We need to save some files after release (i.e. debug symbols database 'pdb' files and some other output), which we might need for debug of reported issues and we can't gua

[NAnt-users] How to write to a text file?

2006-07-06 Thread Bonio Lopez
Hi all, how do I write into a text file using nant? (use of

[NAnt-users] Nant programming

2006-07-05 Thread Bonio Lopez
Dear all, First of all, thanks for the great tool. Nant really simplified build process for me. I have 2 questions. 1. Is it possible to declare a temp variables? I have seen no example so far. Because of using properties as temp variables, the progs become badly readable. Do I miss a point of us

[NAnt-users] What is project directory

2006-07-04 Thread Bonio Lopez
Dear all, I have noticed following. If build file A is included into build file B using then the project::get-base-directory() returns path to B, even if it is situated inside of A. But if build file A included into B using --- Then project::get-base-director

[NAnt-users] Function call failed (IMHO bug)

2006-07-03 Thread Bonio Lopez
Function call failed. Expression: ${file::is-assembly("somefile.msi")} ^^ Could not load file or assembly 'somefile.msi' or one of its dependencies. Daten mit diesem Typ werden nicht unterstü tzt. (Exc

[NAnt-users] Nant and multithreading

2006-06-22 Thread Bonio Lopez
Dear all, With gmake it is posible to start tasks on multiple processors. Is this functionality supported (planed) for Nant? Best regards, Boni All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the ho

[NAnt-users] How to add quotas to line?

2006-06-21 Thread Bonio Lopez
Dear all, Following line Usage: nant set_log -D:Loggers="e loger_names "e" Produces exception: NAnt.Core.BuildException: C:\XXX\default.build(32,82): Error loading buildfile. ---> System.Xml.XmlException: An error occurred while parsing EntityName. L ine 32, position 82. at System.Xml.XmlTextRe

Re: [NAnt-users] Get devenv output

2006-06-21 Thread Bonio Lopez
Thanks Gert, thanks Curtis. Devenv.com works for me. -Original Message- From: Curtis Zarger [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 21. Juni 2006 15:24 To: Bonio Lopez; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] Get devenv output Have you tried using devenv.com instead

[NAnt-users] Get devenv output

2006-06-21 Thread Bonio Lopez
Dear all, I use exec task in order to compile devenv solutions with Visual Studio (Yes,I know about solution task). If solution can't compile I get a error: External Program Failed: C:\Program Files\Microsoft Visual Studio .NET 2003\Comm on7\IDE\\devenv.exe (return code was