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

2005-01-06 Thread Christopher_P_Vanik
cc: nant-users@lists.sourceforge.net Subject: Re: [Nant-users] solution task and warn on error 01/05/2005 09:57 AM

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

2005-01-06 Thread Christopher_P_Vanik
thlink.net> cc: Subject: Re: [Nant-users] solution task and warn on error

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

2005-01-05 Thread Merrill Cornish
Christopher, >>> TreatWarningsAsErrors = "true". in the csproj files. OK, what does TreatWarningsAsErrors = "true" actually _do_? At what level does it work? Does it possibly simply say the solution build stops on warnings, which it wouldn't normally do. If the program that uses the TreatWar

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

2005-01-05 Thread Merrill Cornish
Christopher, I believe the default failonerror attribute of the task is true, which is what you want. Could it somehow have been set to false, thereby letting ignore the failure? Merrill --- The SF.Net email is sponsored by: Beat the post

[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