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