17 references to TaskPropertyInfo
Microsoft.Build (2)
Instance\TaskRegistry.cs (2)
1823
UsingTaskParameters.Add(parameter.Name, new
TaskPropertyInfo
(parameter.Name, paramType, output, required));
1867
taskPropertyInfo = new
TaskPropertyInfo
(name, propertyType, output, required);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskBuilderTestTask.cs (1)
1308
propertyInfos[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)
374
new
TaskPropertyInfo
("Parameter1", typeof(string), output: false, required: true),
375
new
TaskPropertyInfo
("Parameter2", typeof(string), output: true, required: false),
376
new
TaskPropertyInfo
("Parameter3", typeof(string), output: true, required: true),
377
new
TaskPropertyInfo
("Parameter4", typeof(ITaskItem), output: false, required: false),
378
new
TaskPropertyInfo
("Parameter5", typeof(ITaskItem[]), output: false, required: false),
483
new
TaskPropertyInfo
("Parameter1", typeof(string), output: false, required: true),
484
new
TaskPropertyInfo
("Parameter2", typeof(string), output: true, required: false),
485
new
TaskPropertyInfo
("Parameter3", typeof(string), output: true, required: true),
486
new
TaskPropertyInfo
("Parameter4", typeof(ITaskItem), output: false, required: false),
487
new
TaskPropertyInfo
("Parameter5", typeof(ITaskItem[]), output: false, required: false),