7 writes to PropertyName
Microsoft.Build (1)
Construction\ProjectOutputElement.cs (1)
158
output.
PropertyName
= propertyName;
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ConstructionEditing_Tests.cs (2)
2810
element.
PropertyName
= "tp2";
3069
element.
PropertyName
= "tp2";
Construction\ProjectOutputElement_Tests.cs (2)
229
output.
PropertyName
= "p1b";
271
output.
PropertyName
= "p1b";
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (2)
341
newOutputProp.VerifySetter(PropertyName.Ver(1), (o) => o.PropertyName, (o, v) => o.
PropertyName
= v);
342
Assert.ThrowsAny<InvalidOperationException>(() => newOutputItem.View.
PropertyName
= "foo");
10 references to PropertyName
Microsoft.Build (4)
Construction\ProjectOutputElement.cs (3)
73
public bool IsOutputProperty =>
PropertyName
.Length > 0;
93
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(
PropertyName
), "OM_EitherAttributeButNotBoth", ElementName, XMakeAttributes.itemName, XMakeAttributes.propertyName);
176
return owner.CreateOutputElement(TaskParameter, ItemType,
PropertyName
);
Evaluation\Evaluator.cs (1)
446
output.
PropertyName
,
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ProjectOutputElement_Tests.cs (3)
31
Assert.Equal(String.Empty, output.
PropertyName
);
46
Assert.Equal("p1", output.
PropertyName
);
230
Assert.Equal("p1b", output.
PropertyName
);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
711
Assert.Equal(realXml.
PropertyName
, viewXml.
PropertyName
);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
341
newOutputProp.VerifySetter(PropertyName.Ver(1), (o) => o.
PropertyName
, (o, v) => o.PropertyName = v);