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