7 writes to ItemType
Microsoft.Build (1)
Construction\ProjectOutputElement.cs (1)
154
output.
ItemType
= itemType;
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ConstructionEditing_Tests.cs (2)
2788
element.
ItemType
= "tp2";
3047
element.
ItemType
= "tp2";
Construction\ProjectOutputElement_Tests.cs (2)
244
output.
ItemType
= "i1b";
256
output.
ItemType
= "p1b";
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (2)
338
newOutputItem.VerifySetter(ItemType.Ver(1), (o) => o.ItemType, (o, v) => o.
ItemType
= v);
339
Assert.ThrowsAny<InvalidOperationException>(() => newOutputProp.View.
ItemType
= "foo");
10 references to ItemType
Microsoft.Build (4)
Construction\ProjectOutputElement.cs (3)
68
public bool IsOutputItem =>
ItemType
.Length > 0;
113
ErrorUtilities.VerifyThrowInvalidOperation(String.IsNullOrEmpty(
ItemType
), "OM_EitherAttributeButNotBoth", ElementName, XMakeAttributes.itemName, XMakeAttributes.propertyName);
176
return owner.CreateOutputElement(TaskParameter,
ItemType
, PropertyName);
Evaluation\Evaluator.cs (1)
433
output.
ItemType
,
Microsoft.Build.Engine.OM.UnitTests (6)
Construction\ProjectOutputElement_Tests.cs (3)
32
Assert.Equal("i1", output.
ItemType
);
47
Assert.Equal(String.Empty, output.
ItemType
);
257
Assert.Equal("p1b", output.
ItemType
);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
710
Assert.Equal(realXml.
ItemType
, viewXml.
ItemType
);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
338
newOutputItem.VerifySetter(ItemType.Ver(1), (o) => o.
ItemType
, (o, v) => o.ItemType = v);