Implemented interface member:
property
ItemType
Microsoft.Build.Evaluation.IItemTypeDefinition.ItemType
22 references to ItemType
dotnet (1)
Commands\Project\Convert\ProjectConvertCommand.cs (1)
382
yield return (item.
ItemType
, FullPath: itemFullPath, RelativePath: itemRelativePath);
Microsoft.Build (21)
BackEnd\Components\Logging\ProjectLoggingContext.cs (1)
225
items = projectItems?.GetCopyOnReadEnumerable(item => new DictionaryEntry(item.
ItemType
, new TaskItem(item))) ?? [];
BackEnd\Components\RequestBuilder\BatchingEngine.cs (1)
416
(!String.Equals(item.
ItemType
, metadataItemName, StringComparison.OrdinalIgnoreCase)))
BackEnd\Components\RequestBuilder\Lookup.cs (3)
1044
if (table?.ContainsKey(item.
ItemType
) == true)
1046
List<ProjectItemInstance> tableOfItemsOfSameType = table[item.
ItemType
];
1060
if (table?.TryGetValue(item.
ItemType
, out tableOfItemsOfSameType) == true)
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (6)
645
bool outOfDate = IsOutOfDate(((IItem)upToDateInputItems[i]).EvaluatedIncludeEscaped, ((IItem)outputItems[i]).EvaluatedIncludeEscaped, upToDateInputItems[i].
ItemType
, outputItems[i].
ItemType
);
699
if (!changedTargetInputs.ItemTypes.Contains(inputItems[0].
ItemType
))
701
changedTargetInputs.ImportItemsOfType(inputItems[0].
ItemType
, Array.Empty<ProjectItemInstance>());
706
if (!upToDateTargetInputs.ItemTypes.Contains(inputItems[0].
ItemType
))
708
upToDateTargetInputs.ImportItemsOfType(inputItems[0].
ItemType
, Array.Empty<ProjectItemInstance>());
Collections\ItemDictionarySlim.cs (2)
37
if (!_itemLists.TryGetValue(projectItem.
ItemType
, out List<ProjectItemInstance>? list))
40
_itemLists[projectItem.
ItemType
] = list;
Graph\ProjectInterpretation.cs (1)
268
.
ItemType
.Equals(
Instance\ProjectInstance.cs (2)
996
projectItemInstance => projectItemInstance.
ItemType
);
2121
if (string.Equals(item.
ItemType
, itemType, StringComparison.OrdinalIgnoreCase))
Instance\ProjectItemInstance.cs (3)
278
get { return
ItemType
; }
708
ProjectItemElement item = parent.ContainingProject.CreateItemElement(
ItemType
);
2347
if (_project.ItemDefinitions.TryGetValue(source.
ItemType
, out sourceItemDefinition))
Utilities\Utilities.cs (2)
801
.Select(i => new ItemData(i.
ItemType
, (IItemData)i));
830
.Select(i => new ItemData(i.
ItemType
, (IItemData)i)))