Hi Payton

try 

<property name="IsNet1.0" 
value="${string::contains(nant.settings.currentframework, 'net-1.0')}" />

instead of 

<property name="IsNet1.0" 
value="${string::contains('${nant.settings.currentframework}', 'net-1.0')}" />

what you did is actually compare the string
"${nant.settings.currentframework}" to "net-1.0", which is always
false, instead of retrieving the value of the property.


regards

Thibaut Barrère


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88&alloc_id065&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to