7 references to CreateOutputElement
Microsoft.Build (4)
Construction\ProjectOutputElement.cs (1)
176
return owner.
CreateOutputElement
(TaskParameter, ItemType, PropertyName);
Construction\ProjectTaskElement.cs (2)
244
ProjectOutputElement outputItem = ContainingProject.
CreateOutputElement
(taskParameter, itemType, null);
274
ProjectOutputElement outputProperty = ContainingProject.
CreateOutputElement
(taskParameter, null, propertyName);
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
131
/// Facilitate remoting the <see cref="ProjectRootElement.
CreateOutputElement
"/>.
Microsoft.Build.Engine.OM.UnitTests (3)
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (2)
115
xmlPair.CreateWithVerify<ProjectOutputElement>((p) => p.
CreateOutputElement
("taskParam", "itemType", null));
116
xmlPair.CreateWithVerify<ProjectOutputElement>((p) => p.
CreateOutputElement
("taskParam", null, "propName"));
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
92
return (MockProjectOutputElementLinkRemoter)this.Export(this.ProjectXml.
CreateOutputElement
(taskParameter, itemType, propertyName));