Re: [Nant-users] can i get a second opinion

2004-10-20 Thread Rajbeer Dhatt
On Tue, 19 Oct 2004, Felice Vittoria wrote: When I run this file I will get the following: Property evaluation failed. Expression: ${property::exists(rootdir)} ^^^ Property 'rootdir' has not been set. Try:

RE: [Nant-users] can i get a second opinion

2004-10-19 Thread Urs Muff
Will do just fine. - URS C. MUFF SOFTWARE ARCHITECT - RESEARCH LAB, QUARK EIF QUARK INC. [EMAIL PROTECTED] - X6360 +1 (303) 894 3360 CONFIDENTIALITY NOTICE This e-mail transmission and any documents, files, or previous e-mail messages appended or attached to it, may contain informat

RE: [Nant-users] can i get a second opinion

2004-10-19 Thread Felice Vittoria
Thanks! I knew about this but for some reason my eyes didn't catch it. -Original Message- From: Merrill Cornish [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 4:19 PM To: Felice Vittoria; Nant-Users (E-mail) Subject: Re: [Nant-users] can i get a second opinion F

Re: [Nant-users] can i get a second opinion

2004-10-19 Thread Merrill Cornish
Felice, >>> ${property::exists(rootdir)} Everything inside a ${ ... } is evaluated UNLESS it is quoted. So, it's trying to evalute rootdir so it can test the existence of that value. What you want is ${property::exists('rootdir')} Merrill -