Implemented interface member:
property
TaskType
Microsoft.Build.Framework.ITaskFactory.TaskType
1 write to TaskType
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\IntrinsicTasks\IntrinsicTaskFactory.cs (1)
25this.TaskType = intrinsicType;
6 references to TaskType
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\IntrinsicTasks\IntrinsicTaskFactory.cs (6)
50if (!String.Equals(taskName, TaskType.Name, StringComparison.OrdinalIgnoreCase)) 52ErrorUtilities.ThrowInternalError("Unexpected task name {0}. Expected {1}", taskName, TaskType.Name); 63PropertyInfo[] infos = TaskType.GetProperties(BindingFlags.Instance | BindingFlags.Public); 78if (TaskType == typeof(MSBuild)) 82else if (TaskType == typeof(CallTarget)) 87ErrorUtilities.ThrowInternalError("Unexpected intrinsic task type {0}", TaskType);