7 references to ItemSpec
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (1)
621
ItemSpec<ProjectPropertyInstance, ProjectItemInstance> itemSpec = new
ItemSpec
<ProjectPropertyInstance, ProjectItemInstance>(child.Remove, expander, child.RemoveLocation, Project.Directory, true);
Definition\Project.cs (4)
2619
var includeItemspec = new
EvaluationItemSpec
(itemElement.Include, _data.Expander, itemElement.IncludeLocation, itemElement.ContainingProject.DirectoryPath);
2635
var excludeItemspec = new
EvaluationItemSpec
(itemElement.Exclude, _data.Expander, itemElement.ExcludeLocation, itemElement.ContainingProject.DirectoryPath);
2675
var removeSpec = new
EvaluationItemSpec
(itemElement.Remove, _data.Expander, itemElement.RemoveLocation, itemElement.ContainingProject.DirectoryPath);
2798
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);
Microsoft.Build.Engine.UnitTests (1)
Evaluation\ItemSpec_Tests.cs (1)
85
return new
ProjectInstanceItemSpec
(itemSpec, expander, location, Path.GetDirectoryName(location.File));