1 instantiation of GlobResult
Microsoft.Build (1)
Definition\Project.cs (1)
2652
return new
GlobResult
(itemElement, includeGlobStrings, includeGlobWithGaps, excludeFragmentStrings, removeFragmentStrings);
21 references to GlobResult
Microsoft.Build (16)
Definition\Project.cs (14)
904
/// <see cref="
GlobResult
.MsBuildGlob"/> is a <see cref="IMSBuildGlob"/> that combines all globs in the include element and ignores
918
/// List of <see cref="
GlobResult
"/>.
920
public List<
GlobResult
> GetAllGlobs()
932
public List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
941
public List<
GlobResult
> GetAllGlobs(string itemType)
954
public List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2508
public override List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
2521
public override List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2525
return new List<
GlobResult
>();
2563
private List<
GlobResult
> GetAllGlobs(List<ProjectItemElement> projectItemElements)
2567
return new List<
GlobResult
>();
2591
var globResults = new List<
GlobResult
>(projectItemElements.Count);
2599
var
globResult = BuildGlobResultFromIncludeItem(itemElement, removeElementCache);
2617
private
GlobResult
BuildGlobResultFromIncludeItem(ProjectItemElement itemElement, IReadOnlyDictionary<string, CumulativeRemoveElementData> removeElementCache)
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (2)
136
public abstract List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext);
141
public abstract List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext);
Microsoft.Build.Engine.OM.UnitTests (4)
Definition\Project_Tests.cs (2)
3774
foreach (
var
globResult in project.GetAllGlobs())
4308
private static void AssertGlobResultsEqual(GlobResultList expected, List<
GlobResult
> globs)
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (2)
191
public override List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
196
public override List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\ProjectFile.cs (1)
208
static FileGlobs GetFileGlobs(
GlobResult
g)