17 references to TaskPropertyInfo
Microsoft.Build (2)
Instance\TaskRegistry.cs (2)
1823UsingTaskParameters.Add(parameter.Name, new TaskPropertyInfo(parameter.Name, paramType, output, required)); 1867taskPropertyInfo = new TaskPropertyInfo(name, propertyType, output, required);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskBuilderTestTask.cs (1)
1308propertyInfos[i] = new TaskPropertyInfo(
Microsoft.Build.Framework (3)
ReflectableTaskPropertyInfo.cs (3)
34: base(taskPropertyInfo.Name, taskPropertyInfo.PropertyType, taskPropertyInfo.Output, taskPropertyInfo.Required) 45: base( 60: base(
Microsoft.Build.Tasks.Core (1)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
213.Select(i => new TaskPropertyInfo(
Microsoft.Build.Tasks.UnitTests (10)
RoslynCodeTaskFactory_Tests.cs (10)
374new TaskPropertyInfo("Parameter1", typeof(string), output: false, required: true), 375new TaskPropertyInfo("Parameter2", typeof(string), output: true, required: false), 376new TaskPropertyInfo("Parameter3", typeof(string), output: true, required: true), 377new TaskPropertyInfo("Parameter4", typeof(ITaskItem), output: false, required: false), 378new TaskPropertyInfo("Parameter5", typeof(ITaskItem[]), output: false, required: false), 483new TaskPropertyInfo("Parameter1", typeof(string), output: false, required: true), 484new TaskPropertyInfo("Parameter2", typeof(string), output: true, required: false), 485new TaskPropertyInfo("Parameter3", typeof(string), output: true, required: true), 486new TaskPropertyInfo("Parameter4", typeof(ITaskItem), output: false, required: false), 487new TaskPropertyInfo("Parameter5", typeof(ITaskItem[]), output: false, required: false),