3 instantiations of ProjectUsingTaskBodyElement
Microsoft.Build (3)
Construction\ProjectUsingTaskBodyElement.cs (1)
126var taskElement = new ProjectUsingTaskBodyElement(element, containingProject)
Evaluation\ProjectParser.cs (1)
555child = new ProjectUsingTaskBodyElement(childElement, usingTask, _project);
ObjectModelRemoting\LinkedObjectFactory.cs (1)
216return new ProjectUsingTaskBodyElement(link);
15 references to ProjectUsingTaskBodyElement
Microsoft.Build (15)
Construction\ProjectRootElement.cs (2)
1492public ProjectUsingTaskBodyElement CreateUsingTaskBodyElement(string evaluate, string body) 1494return Link != null ? RootLink.CreateUsingTaskBodyElement(evaluate, body) : ProjectUsingTaskBodyElement.CreateDisconnected(evaluate, body, this);
Construction\ProjectUsingTaskBodyElement.cs (2)
123internal static ProjectUsingTaskBodyElement CreateDisconnected(string evaluate, string body, ProjectRootElement containingProject) 126var taskElement = new ProjectUsingTaskBodyElement(element, containingProject)
Construction\ProjectUsingTaskElement.cs (5)
148public ProjectUsingTaskBodyElement TaskBody 152ProjectUsingTaskBodyElement body = LastChild as ProjectUsingTaskBodyElement; 219public ProjectUsingTaskBodyElement AddUsingTaskBody(string evaluate, string taskBody) 221ProjectUsingTaskBodyElement newTaskBody = ContainingProject.CreateUsingTaskBodyElement(evaluate, taskBody);
Instance\TaskRegistry.cs (2)
1679ProjectUsingTaskBodyElement taskElement = projectUsingTaskXml.TaskBody; 1698private void EvaluateTaskBody<P, I>(Expander<P, I> expander, ProjectUsingTaskBodyElement taskElement, ExpanderOptions expanderOptions)
ObjectModelRemoting\ConstructionObjectLinks\ProjectRootElementLink.cs (1)
176public abstract ProjectUsingTaskBodyElement CreateUsingTaskBodyElement(string evaluate, string body);
ObjectModelRemoting\ConstructionObjectLinks\ProjectUsingTaskBodyElementLink.cs (2)
10/// Allow for creating a local representation to external object of type <see cref="ProjectUsingTaskBodyElement"/> 15/// Access to remote <see cref="ProjectUsingTaskBodyElement.TaskBody"/>.
ObjectModelRemoting\LinkedObjectFactory.cs (1)
214public ProjectUsingTaskBodyElement Create(ProjectUsingTaskBodyElementLink link)