1 instantiation of GlobResult
Microsoft.Build (1)
Definition\Project.cs (1)
2702
return new
GlobResult
(itemElement, includeGlobStrings.ToImmutableArray(), includeGlobWithGaps, excludeFragmentStrings, removeFragmentStrings);
17 references to GlobResult
Microsoft.Build (16)
Definition\Project.cs (14)
928
/// <see cref="
GlobResult
.MsBuildGlob"/> is a <see cref="IMSBuildGlob"/> that combines all globs in the include element and ignores
942
/// List of <see cref="
GlobResult
"/>.
944
public List<
GlobResult
> GetAllGlobs()
956
public List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
965
public List<
GlobResult
> GetAllGlobs(string itemType)
978
public List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2544
public override List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
2557
public override List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2561
return new List<
GlobResult
>();
2599
private List<
GlobResult
> GetAllGlobs(List<ProjectItemElement> projectItemElements)
2603
return new List<
GlobResult
>();
2627
var globResults = new List<
GlobResult
>(projectItemElements.Count);
2635
var
globResult = BuildGlobResultFromIncludeItem(itemElement, removeElementCache);
2653
private
GlobResult
BuildGlobResultFromIncludeItem(ProjectItemElement itemElement, IReadOnlyDictionary<string, CumulativeRemoveElementData> removeElementCache)
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (2)
135
public abstract List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext);
140
public abstract List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext);
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\ProjectInstanceReader.cs (1)
148
static FileGlobs GetFileGlobs(MSB.Evaluation.
GlobResult
g)