15 references to CreateOtherwiseElement
Microsoft.Build (2)
Construction\ProjectOtherwiseElement.cs (1)
108return owner.CreateOtherwiseElement();
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
126/// Facilitate remoting the <see cref="ProjectRootElement.CreateOtherwiseElement"/>.
Microsoft.Build.Engine.OM.UnitTests (13)
Construction\ConstructionEditing_Tests.cs (8)
1242ProjectOtherwiseElement otherwise = project.CreateOtherwiseElement(); 1261choose.AppendChild(project.CreateOtherwiseElement()); 1262choose.AppendChild(project.CreateOtherwiseElement()); 1277choose.AppendChild(project.CreateOtherwiseElement()); 1278choose.InsertAfterChild(project.CreateOtherwiseElement(), choose.FirstChild); 1292ProjectOtherwiseElement otherwise = project.CreateOtherwiseElement(); 1308ProjectOtherwiseElement otherwise = project.CreateOtherwiseElement(); 1938ProjectOtherwiseElement otherwise = project.CreateOtherwiseElement();
Construction\ProjectRootElement_Tests.cs (1)
1193var otherwise = pre.CreateOtherwiseElement();
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (3)
114xmlPair.CreateWithVerify<ProjectOtherwiseElement>((p) => p.CreateOtherwiseElement()); 391var otherWise = choose.AppendNewChaildWithVerify<ProjectOtherwiseElement>(ObjectType.View, "when", (p, l) => p.CreateOtherwiseElement(), (p, l) => true); 453var otherwise = choose.AppendNewChaildWithVerify<ProjectOtherwiseElement>(ObjectType.View, "when", (p, s) => p.CreateOtherwiseElement(), (p, s) => true);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
88return (MockProjectOtherwiseElementLinkRemoter)this.Export(this.ProjectXml.CreateOtherwiseElement());