6 references to ItemSpec
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (1)
661
ItemSpec<ProjectPropertyInstance, ProjectItemInstance> itemSpec = new
ItemSpec
<ProjectPropertyInstance, ProjectItemInstance>(child.Remove, expander, child.RemoveLocation, Project.Directory, true);
Definition\Project.cs (4)
2614
var includeItemspec = new
EvaluationItemSpec
(itemElement.Include, _data.Expander, itemElement.IncludeLocation, itemElement.ContainingProject.DirectoryPath);
2644
var excludeItemspec = new
EvaluationItemSpec
(itemElement.Exclude, _data.Expander, itemElement.ExcludeLocation, itemElement.ContainingProject.DirectoryPath);
2684
var removeSpec = new
EvaluationItemSpec
(itemElement.Remove, _data.Expander, itemElement.RemoveLocation, itemElement.ContainingProject.DirectoryPath);
2807
EvaluationItemSpec expandedItemSpec = new
EvaluationItemSpec
(itemSpec, _data.Expander, elementLocation, itemElement.ContainingProject.DirectoryPath, expandProperties: true);
Evaluation\LazyItemEvaluator.cs (1)
617
builder.ItemSpec = new
ItemSpec
<P, I>(itemSpec, _outerExpander, itemSpecLocation, rootDirectory);