RE: [SPAM] - RE: [Nant-users] Nant .85 not working with Draco.Net - Email found in subject

2004-08-20 Thread Merrill Cornish
Mark, The usage of draco in your example shouldn't fail because of any readonly condition. Are you sure the error message is coming from those particular lines of code? Merrill --- SF.Net email is sponsored by Shop4tech.com-Lowest price on B

RE: [SPAM] - RE: [Nant-users] Nant .85 not working with Draco.Net - Email found in subject

2004-08-20 Thread Mark Overton
="${verbose}"/>       Mark   Mark Overton Digital Architects, Inc. 972-215-5674   From: Foley, Cash [mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 3:46 PM To: Mark Overton; [EMAIL PROTECTED] Subject: [SPAM] - RE: [Nant-users] Nant .85 not working w

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Merrill Cornish
Unfortunately, the property task's overwrite attribute can't overwrite a readonly property--according to the documentation. So, if you are passing a command line argument into the NAnt 0.85 script and you want to munge that value internally, then you will have to create a second property initi

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Felice Vittoria
; [EMAIL PROTECTED]Subject: RE: [Nant-users] Nant .85 not working with Draco.Net How can the “overwrite” occur on the command line?     Cash - [EMAIL PROTECTED] perotsystems 972-577-5842 - office   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Foley, Cash
It seems a little odd that you are attempting to set the Draco property.  I’m assuming your build file was launched by Draco with a ‘true’ value and you are trying to change that to ‘false’?!   If this is true, I would recommend creating a new property and initialize it with the Draco pro

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Foley, Cash
] Subject: RE: [Nant-users] Nant .85 not working with Draco.Net   Yes .. .this is a new "feature" of Nant 0.85.   The property draco needs to have this declaration:     Hope these 2 links help: Latest Release Notes information: http://nant.sourc

RE: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Felice Vittoria
Yes .. .this is a new "feature" of Nant 0.85.   The property draco needs to have this declaration:     Hope these 2 links help: Latest Release Notes information: http://nant.sourceforge.net/releasenotes.html Latest task information: http://nant.sourceforge.net/nightly/help/tasks/property.

Re: [Nant-users] Nant .85 not working with Draco.Net

2004-08-20 Thread Merrill Cornish
Mark, Beginning in NAnt 0.85, properties now have an optional readonly attribute which defaults to false. Once the readonly attribute is set, it (apparently) can't be reset and can't be overwritten. Command line parameters specified by -D:propname become readonly properties in NAnt 0.85 scrip