11 writes to Outputs
Microsoft.Build (1)
Instance\ProjectTargetInstance.cs (1)
476target.Outputs = Outputs;
Microsoft.Build.Engine.OM.UnitTests (10)
Construction\ConstructionEditing_Tests.cs (3)
371target.Outputs = "o"; 395target.Outputs = "o"; 2733element.Outputs = "o";
Construction\ElementLocationPublic_Tests.cs (3)
32target.Outputs = "o"; 49target.Outputs = "o"; 70target.Outputs = "o";
Construction\ProjectTargetElement_Tests.cs (3)
90target.Outputs = "ob"; 121target.Outputs = null; 255target.Outputs = "out";
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
172newTarget1.VerifySetter("newOutputs", (t) => t.Outputs, (t, v) => t.Outputs = v);
7 references to Outputs
Microsoft.Build (1)
Evaluation\Evaluator.cs (1)
587targetElement.Outputs,
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ProjectTargetElement_Tests.cs (3)
76Assert.Equal("o", target.Outputs); 95Assert.Equal("ob", target.Outputs); 257Assert.Equal("out", target.Outputs);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
805Assert.Equal(realXml.Outputs, viewXml.Outputs);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
172newTarget1.VerifySetter("newOutputs", (t) => t.Outputs, (t, v) => t.Outputs = v);