Index: Target.cs
===================================================================
RCS file: /cvsroot/nant/nant/src/NAnt.Core/Target.cs,v
retrieving revision 1.2
diff -u -r1.2 Target.cs
--- Target.cs	25 Feb 2003 23:15:28 -0000	1.2
+++ Target.cs	6 Mar 2003 21:28:37 -0000
@@ -117,7 +117,7 @@
         /// <summary>
         /// The xml used to initialize this Target.
         /// </summary>
-        protected XmlNode TargetNode { get {return _xmlNode;} }
+        protected XmlNode TargetNode { get {return XmlNode;} }
 
         /// <summary>Executes dependent targets first, then the target.</summary>
         public void Execute() {
@@ -142,7 +142,7 @@
                     Log.WriteLine("{0}:", Name);
 
                     // select all the task nodes and execute them
-                    foreach (XmlNode taskNode in _xmlNode) {
+                    foreach (XmlNode taskNode in XmlNode) {
                         if(taskNode.Name.StartsWith("#")) continue;
 
                         Task task = Project.CreateTask(taskNode, this);
