Index: src/NAnt.Core/Element.cs
===================================================================
RCS file: /cvsroot/nant/nant/src/NAnt.Core/Element.cs,v
retrieving revision 1.34
diff -u -r1.34 Element.cs
--- src/NAnt.Core/Element.cs	1 Aug 2003 14:34:59 -0000	1.34
+++ src/NAnt.Core/Element.cs	26 Aug 2003 08:00:11 -0000
@@ -389,7 +389,7 @@
                         // If the object is an emum
                         if (propertyType.IsEnum) {
                             try {
-                                propertyValue = Enum.Parse(propertyType, attributeValue);
+                                propertyValue = Enum.Parse(propertyType, attributeValue, true);
                             } catch (Exception) {
                                 // catch type conversion exceptions here
                                 string message = "Invalid value \"" + attributeValue + "\". Valid values for this attribute are: ";
