1 write to PropertyType
Microsoft.Build.Framework (1)
TaskPropertyInfo.cs (1)
26PropertyType = typeOfParameter;
11 references to PropertyType
Microsoft.Build (6)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (5)
692parameter.PropertyType.FullName, 1165Array convertibleOutputs = parameter.PropertyType.IsArray ? (Array)outputs : new[] { outputs }; 1511/// For an in-proc task the property's <see cref="TaskPropertyInfo.PropertyType"/> is already the live, 1522return parameter.PropertyType; 1542?? parameter.PropertyType.AssemblyQualifiedName;
Instance\TaskRegistry.cs (1)
1884propertyTypeName = 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)
167PropertyAssemblyQualifiedNames[i] = Properties[i]?.PropertyType?.AssemblyQualifiedName ?? string.Empty;
ReflectableTaskPropertyInfo.cs (1)
39: base(taskPropertyInfo.Name, taskPropertyInfo.PropertyType, taskPropertyInfo.Output, taskPropertyInfo.Required)
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
273CreateProperty(codeTypeDeclaration, propertyInfo.Name, propertyInfo.PropertyType, null, propertyInfo.Output, propertyInfo.Required);