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