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)
370target.Outputs = "o"; 394target.Outputs = "o"; 2732element.Outputs = "o";
Construction\ElementLocationPublic_Tests.cs (3)
32target.Outputs = "o"; 49target.Outputs = "o"; 70target.Outputs = "o";
Construction\ProjectTargetElement_Tests.cs (3)
89target.Outputs = "ob"; 120target.Outputs = null; 254target.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)
595targetElement.Outputs,
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ProjectTargetElement_Tests.cs (3)
75Assert.Equal("o", target.Outputs); 94Assert.Equal("ob", target.Outputs); 256Assert.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);