[NAnt-users] Various NAnt Updates

2012-02-22 Thread Ryan Boggs
Hi all, Just checking in with some progress that has been occurring in NAnt's development. It's not a complete list but there are a few big ones that I think are worth highlighting. * The VS project solution files for both NAnt and NAntContrib projects have been updated to VS2010 format. * .NET

Re: [NAnt-users] non-readonly properties

2012-02-22 Thread Chris Fouts
Thanks, I was actually setting the arguments in CCNET, via From: Bob Archer [mailto:bob.arc...@amsi.com] Sent: Wednesday, February 22, 2012 1:25 PM To: Chris Fouts; nant-users@lists.sourceforge.net Subject: RE: non-readonly properties Properties set on the command line are always read-only. If

Re: [NAnt-users] non-readonly properties

2012-02-22 Thread Bob Archer
Properties set on the command line are always read-only. If you want to not reset a property value if it was set from the command line you can use overwrite="false". Also, when you pass false from the command line you don't need to quote it. BOb From: Chris Fouts [mailto:chris.fo...@caemilusa

[NAnt-users] non-readonly properties

2012-02-22 Thread Chris Fouts
I have the following properties defined in mynant.build file But when I run script where I override the defined properties, e.g., C:\> nant mynant.build -D:enable_project1_build="false" I get... Read-only property "enable_project1_build" cannot b