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 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
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
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
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.
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
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
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