1 write to PropertyType
Microsoft.Build.Framework (1)
TaskPropertyInfo.cs (1)
27
PropertyType
= typeOfParameter;
10 references to PropertyType
Microsoft.Build (5)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (4)
536
parameter.
PropertyType
.FullName,
882
Array convertibleOutputs = parameter.
PropertyType
.IsArray ? (Array)outputs : new[] { outputs };
1138
parameter.
PropertyType
.AssemblyQualifiedName);
1145
parameterType = Type.GetType(parameter.
PropertyType
.AssemblyQualifiedName);
Instance\TaskRegistry.cs (1)
1854
propertyTypeName = taskPropertyInfo.
PropertyType
.AssemblyQualifiedName;
Microsoft.Build.Framework (4)
IGeneratedTask.cs (2)
19
/// <param name="value">The value to set. The caller is responsible to type-coerce this value to match the property's <see cref="TaskPropertyInfo.
PropertyType
"/>.</param>
31
/// The value of the property, the value's type will match the type given by <see cref="TaskPropertyInfo.
PropertyType
"/>.
Loader\LoadedType.cs (1)
154
PropertyAssemblyQualifiedNames[i] = Properties[i]?.
PropertyType
?.AssemblyQualifiedName ?? string.Empty;
ReflectableTaskPropertyInfo.cs (1)
34
: base(taskPropertyInfo.Name, taskPropertyInfo.
PropertyType
, taskPropertyInfo.Output, taskPropertyInfo.Required)
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
247
CreateProperty(codeTypeDeclaration, propertyInfo.Name, propertyInfo.
PropertyType
, null, propertyInfo.Output, propertyInfo.Required);