12 references to MetadataCollection
Microsoft.Build (11)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (1)
1397
newItem.SetMetadata(outputAsProjectItem.
MetadataCollection
); // copy-on-write!
Instance\ProjectItemInstance.cs (10)
255
get { return _taskItem.
MetadataCollection
; }
945
ICopyOnWritePropertyDictionary<ProjectMetadataInstance> metadataCollection =
MetadataCollection
;
1054
var list = _itemDefinitions != null ?
MetadataCollection
: _directMetadata;
1189
IEnumerable<ProjectMetadataInstance> IItem<ProjectMetadataInstance>.Metadata =>
MetadataCollection
;
1449
IEnumerable<ProjectMetadataInstance> metadataEnumerable =
MetadataCollection
;
1467
foreach (ProjectMetadataInstance metadatum in (IEnumerable<ProjectMetadataInstance>)
MetadataCollection
)
1496
var metadata =
MetadataCollection
;
1516
foreach (ProjectMetadataInstance metadatum in (IEnumerable<ProjectMetadataInstance>)
MetadataCollection
)
1647
ICopyOnWritePropertyDictionary<ProjectMetadataInstance> otherMetadata = other.
MetadataCollection
;
1764
ICopyOnWritePropertyDictionary<ProjectMetadataInstance> temp =
MetadataCollection
;
Microsoft.Build.Engine.UnitTests (1)
Instance\TaskItem_Tests.cs (1)
197
ICopyOnWritePropertyDictionary<ProjectMetadataInstance> metadata = item.
MetadataCollection
;