8 references to AddItemFast
Microsoft.Build (3)
Definition\Project.cs (2)
91
/// - <see cref="
AddItemFast
(string,string, IEnumerable<KeyValuePair<string, string>>)"/>
1221
return
AddItemFast
(itemType, unevaluatedInclude, null);
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (1)
189
/// Facilitate remoting the <see cref="Project.
AddItemFast
(string, string, IEnumerable{KeyValuePair{string, string}})"/>.
Microsoft.Build.Engine.OM.UnitTests (5)
Definition\DefinitionEditing_Tests.cs (3)
2133
project.
AddItemFast
("i", "i1", metadata);
2170
project.
AddItemFast
("i", "i1", null);
2535
project.
AddItemFast
("i", "i1.xxx", metadata);
ObjectModelRemoting\Helpers\ViewValidation.evaluation.cs (1)
62
var added = (metadata == null) ? toAdd.AddItemFast(itemType, unevaluatedInclude) : toAdd.
AddItemFast
(itemType, unevaluatedInclude, metadata);
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
75
=> this.OwningCollection.ExportCollection<ProjectItem, MockProjectItemLinkRemoter>(this.Source.
AddItemFast
(itemType, unevaluatedInclude, metadata));