From: Atsushi Eno Date: Tue, 19 Nov 2013 10:11:13 +0000 (+0900) Subject: Fix API: remove non-existent property in .NET (copy-paste bad). X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=ff2726545d6b443af5392c3f3e2f1a5d6d6b8253;p=mono.git Fix API: remove non-existent property in .NET (copy-paste bad). --- diff --git a/mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectTaskInstance.cs b/mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectTaskInstance.cs index 9ee778df2c2..a47f7ff304a 100644 --- a/mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectTaskInstance.cs +++ b/mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectTaskInstance.cs @@ -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; }