7 references to CreateOutputElement
Microsoft.Build (4)
Construction\ProjectOutputElement.cs (1)
176return owner.CreateOutputElement(TaskParameter, ItemType, PropertyName);
Construction\ProjectTaskElement.cs (2)
244ProjectOutputElement outputItem = ContainingProject.CreateOutputElement(taskParameter, itemType, null); 274ProjectOutputElement 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)
115xmlPair.CreateWithVerify<ProjectOutputElement>((p) => p.CreateOutputElement("taskParam", "itemType", null)); 116xmlPair.CreateWithVerify<ProjectOutputElement>((p) => p.CreateOutputElement("taskParam", null, "propName"));
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
92return (MockProjectOutputElementLinkRemoter)this.Export(this.ProjectXml.CreateOutputElement(taskParameter, itemType, propertyName));