1 write to Output
Microsoft.Build.Framework (1)
TaskPropertyInfo.cs (1)
28
Output
= output;
11 references to Output
Microsoft.Build (2)
Instance\TaskFactoryWrapper.cs (1)
318
if (propertyInfos[i].
Output
)
Instance\TaskRegistry.cs (1)
1855
output = taskPropertyInfo.
Output
;
Microsoft.Build.Engine.UnitTests (7)
BackEnd\TaskRegistry_Tests.cs (5)
1217
Assert.False(parameterInfo.
Output
);
1224
Assert.True(parameterInfo.
Output
);
1466
Assert.False(((TaskPropertyInfo)registry.TaskRegistrations[new TaskRegistry.RegisteredTaskIdentity("Name", TaskHostParameters.Empty)][0].ParameterGroupAndTaskBody.UsingTaskParameters["ParameterWithAllAttributesHardCoded"]).
Output
);
1481
Assert.False(((TaskPropertyInfo)registry.TaskRegistrations[new TaskRegistry.RegisteredTaskIdentity("Name", TaskHostParameters.Empty)][0].ParameterGroupAndTaskBody.UsingTaskParameters["ParameterWithAllAttributesHardCoded"]).
Output
);
1594
Assert.Equal(parameterInfo.
Output
, bool.Parse(expandedOutput));
TestComparers\TaskRegistryComparers.cs (2)
103
Assert.Equal(x.
Output
, y.
Output
);
Microsoft.Build.Framework (1)
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);