8 writes to Output
Microsoft.Build (1)
Construction\ProjectUsingTaskParameterElement.cs (1)
179Output = output,
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ConstructionEditing_Tests.cs (2)
2674element.Output = "o2"; 2977element.Output = "o2";
Construction\UsingTaskParameterElement_Tests.cs (3)
119parameter.Output = "output"; 161parameter.Output = String.Empty; 203parameter.Output = null;
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
565paraElement.VerifySetter("newOutput", (pe) => pe.Output, (pe, v) => pe.Output = v);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskRegistry_Tests.cs (1)
1675filledOutAttributesParameter.Output = "$(TrueString)";
12 references to Output
Microsoft.Build (3)
Construction\ProjectUsingTaskParameterElement.cs (1)
199return owner.CreateUsingTaskParameterElement(Name, Output, Required, ParameterType);
Instance\TaskRegistry.cs (2)
1722string expandedOutput = expander.ExpandIntoStringLeaveEscaped(parameter.Output, expanderOptions, parameter.OutputLocation); 1730parameter.Output,
Microsoft.Build.Engine.OM.UnitTests (8)
Construction\UsingTaskParameterElement_Tests.cs (5)
56Assert.Equal("true", parameter.Output); 70Assert.Equal(bool.FalseString, parameter.Output); 120Assert.Equal("output", parameter.Output); 162Assert.Equal(bool.FalseString, parameter.Output); 204Assert.Equal(bool.FalseString, parameter.Output);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
741Assert.Equal(realXml.Output, viewXml.Output);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
565paraElement.VerifySetter("newOutput", (pe) => pe.Output, (pe, v) => pe.Output = v);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskRegistry_Tests.cs (1)
1697string expandedOutput = RegistryExpander.ExpandIntoStringAndUnescape(filledOutAttributesParameter.Output, ExpanderOptions.ExpandPropertiesAndItems, filledOutAttributesParameter.OutputLocation);