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