3 instantiations of ReflectableTaskPropertyInfo
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\IntrinsicTasks\IntrinsicTaskFactory.cs (1)
67propertyInfos[i] = new ReflectableTaskPropertyInfo(infos[i]);
Instance\TaskFactoryWrapper.cs (1)
280propertyInfo = new ReflectableTaskPropertyInfo(propertyInfo, _taskFactory.TaskType);
Microsoft.Build.Framework (1)
Loader\LoadedType.cs (1)
149Properties[i] = new ReflectableTaskPropertyInfo(props[i], outputAttribute, requiredAttribute, isAssignableToITask);
10 references to ReflectableTaskPropertyInfo
Microsoft.Build (5)
Instance\TaskFactoryWrapper.cs (5)
214ReflectableTaskPropertyInfo propertyInfo = (ReflectableTaskPropertyInfo)property; 234ReflectableTaskPropertyInfo? propertyInfo = property as ReflectableTaskPropertyInfo; 241ErrorUtilities.ThrowInternalError("Task does not implement IGeneratedTask and we don't have {0} either.", typeof(ReflectableTaskPropertyInfo).Name);
Microsoft.Build.Framework (5)
Loader\LoadedType.cs (2)
93Properties = new ReflectableTaskPropertyInfo[props.Length]; 231internal ReflectableTaskPropertyInfo[] Properties { get; private set; }
ReflectableTaskPropertyInfo.cs (3)
29/// Initializes a new instance of the <see cref="ReflectableTaskPropertyInfo"/> class. 41/// Initializes a new instance of the <see cref="ReflectableTaskPropertyInfo"/> class. 55/// Initializes a new <see cref="ReflectableTaskPropertyInfo"/> with three precomputed parameters. This is specifically