[Nant-users] nant quiet and debug values. Turning off-on inside a .BUILD file

2005-05-16 Thread Christopher_P_Vanik
All, I just started to run my buildfile using -quiet option and I just debug off. I needed to do this because my build logs were becoming huge. However, I want to see everything when I call the solution task. I set "verbose=true" for the solution task but I still want more detail printed to the

[Nant-users] nant quiet and debug values. Turning off-on inside a .BUILD file

2005-05-13 Thread Christopher_P_Vanik
nant quiet and debug values. Turning off-on inside a .BUILD file? Is this possible? Good morning, I just started to run my buildfile using -quiet option and I just debug off. I needed to do this because my build logs were becoming huge. However, I want to see everything when I call the soluti

[Nant-users] XML Poke - adding a field to a node

2005-04-01 Thread Christopher_P_Vanik
All, Here's what I want to do. With xml poke, I want to write an X-path statement which will convet the below to to I know this should be easy, But I can't come-up with the correct x-path statement to add a field. --- SF email is spons

Re: [Nant-users] Fileset and loops

2005-03-15 Thread Christopher_P_Vanik
Is it possible to pre-defined a fileset before using it???. To keep things neat, I want to predefined a fileset instead of using it first in a foreach, or copy task. However, I don't think this is possible. [EMAIL PROTECTED] wrote on 03/15/2005 11:47:28 AM: > That second choice was exactly wh

Re: [Nant-users] Code to invoke nant in new thread, but same process

2005-02-04 Thread Christopher_P_Vanik
No, I have never done this, But I need this functionality. We use PVCS and if I could perform more than 1 get at a time, it would really speed up my build times.

Re: [Nant-users] solution task and warn on error

2005-01-06 Thread Christopher_P_Vanik
I think what's happening is that Nant's solution task isn't passing the value of TreatWarningsAsError to csc. Therefore, csc is using the default which is false. I think it's the same bug as http://sourceforge.net/tracker/index.php?func=detail&aid=1080237&group_id=31650&atid=402868 but I'm c

Re: [Nant-users] solution task and warn on error

2005-01-06 Thread Christopher_P_Vanik
No, The failonerror is set to "true" for the solution task. The problem is that I can't get Nant to consider a warning as an error when using the solution task. Even after I changed all the TreatWarningsAsErrors = "true". in the csproj files. This should be easy to reproduce. Write a small p

[Nant-users] solution task and warn on error

2005-01-04 Thread Christopher_P_Vanik
I think I have discovered a bug or a feature I'd love to have implemented. I'm using the solution task to Build my app. Right before, I call the solution task, I call xml poke on all the .csproj files to ensure TreatWarningsAsErrors = "true". Then I BUILD the app using the solution task. Ho