Fix API: remove non-existent property in .NET (copy-paste bad).
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>
Tue, 19 Nov 2013 10:11:13 +0000 (19:11 +0900)
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>
Tue, 3 Dec 2013 07:51:42 +0000 (16:51 +0900)
mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectTaskInstance.cs

index 9ee778df2c2da766a32ba8045cb82690a5a22570..a47f7ff304a22666d25210e226ff2a108515f35d 100644 (file)
@@ -37,7 +37,6 @@ namespace Microsoft.Build.Execution
                internal ProjectTaskInstance (ProjectTaskElement xml)
                {
                        condition = xml.Condition;
-                       ExecuteTargets = xml.ExecuteTargets;
                        ContinueOnError = xml.ContinueOnError;
                        Name = xml.Name;
                        Outputs = xml.Outputs.Select (o => {
@@ -54,7 +53,6 @@ namespace Microsoft.Build.Execution
                        
                        condition_location = xml.ConditionLocation;
                        ContinueOnErrorLocation = xml.ContinueOnErrorLocation;
-                       ExecuteTargetsLocation = xml.ExecuteTargetsLocation;
                        location = xml.Location;
                        MSBuildArchitectureLocation = xml.MSBuildArchitectureLocation;
                        MSBuildRuntimeLocation = xml.MSBuildRuntimeLocation;
@@ -65,8 +63,6 @@ namespace Microsoft.Build.Execution
                public override string Condition {
                        get { return condition; }
                }
-
-               public string ExecuteTargets { get; private set; }
                
                #if NET_4_5
                ElementLocation condition_location, location;
@@ -74,8 +70,6 @@ namespace Microsoft.Build.Execution
                public override ElementLocation ConditionLocation {
                        get { return condition_location; }
                }
-               
-               public ElementLocation ExecuteTargetsLocation { get; private set; }
 
                public override ElementLocation Location {
                        get { return location; }