12 references to MetadataCollection
Microsoft.Build (11)
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (1)
1393newItem.SetMetadata(outputAsProjectItem.MetadataCollection); // copy-on-write!
Instance\ProjectItemInstance.cs (10)
245get { return _taskItem.MetadataCollection; } 912CopyOnWritePropertyDictionary<ProjectMetadataInstance> metadataCollection = MetadataCollection; 1021var list = _itemDefinitions != null ? MetadataCollection : _directMetadata; 1156IEnumerable<ProjectMetadataInstance> IItem<ProjectMetadataInstance>.Metadata => MetadataCollection; 1413IEnumerable<ProjectMetadataInstance> metadataEnumerable = MetadataCollection; 1431foreach (ProjectMetadataInstance metadatum in MetadataCollection) 1460var metadata = MetadataCollection; 1480foreach (ProjectMetadataInstance metadatum in MetadataCollection) 1601CopyOnWritePropertyDictionary<ProjectMetadataInstance> otherMetadata = other.MetadataCollection; 1714CopyOnWritePropertyDictionary<ProjectMetadataInstance> temp = MetadataCollection;
Microsoft.Build.Engine.UnitTests (1)
Instance\TaskItem_Tests.cs (1)
197CopyOnWritePropertyDictionary<ProjectMetadataInstance> metadata = item.MetadataCollection;