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 (1)
2678
EvaluationItemSpec expandedItemSpec = new
EvaluationItemSpec
(itemSpec, _data.Expander, elementLocation, itemElement.ContainingProject.DirectoryPath, expandProperties: true);
Evaluation\GlobResultBuilder.cs (3)
111
var includeItemspec = new
ItemSpec
<P, I>(itemElement.Include, expander, itemElement.IncludeLocation, itemElement.ContainingProject.DirectoryPath);
141
var excludeItemspec = new
ItemSpec
<P, I>(itemElement.Exclude, expander, itemElement.ExcludeLocation, itemElement.ContainingProject.DirectoryPath);
183
var removeSpec = new
ItemSpec
<P, I>(itemElement.Remove, expander, itemElement.RemoveLocation, itemElement.ContainingProject.DirectoryPath);
Evaluation\LazyItemEvaluator.cs (1)
617
builder.ItemSpec = new
ItemSpec
<P, I>(itemSpec, _outerExpander, itemSpecLocation, rootDirectory);