1 instantiation of GlobResult
Microsoft.Build (1)
Definition\Project.cs (1)
2672
return new
GlobResult
(itemElement, includeGlobStrings.ToImmutableArray(), includeGlobWithGaps, excludeFragmentStrings, removeFragmentStrings);
23 references to GlobResult
Microsoft.Build (16)
Definition\Project.cs (14)
910
/// <see cref="
GlobResult
.MsBuildGlob"/> is a <see cref="IMSBuildGlob"/> that combines all globs in the include element and ignores
924
/// List of <see cref="
GlobResult
"/>.
926
public List<
GlobResult
> GetAllGlobs()
938
public List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
947
public List<
GlobResult
> GetAllGlobs(string itemType)
960
public List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2514
public override List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext)
2527
public override List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext)
2531
return new List<
GlobResult
>();
2569
private List<
GlobResult
> GetAllGlobs(List<ProjectItemElement> projectItemElements)
2573
return new List<
GlobResult
>();
2597
var globResults = new List<
GlobResult
>(projectItemElements.Count);
2605
var
globResult = BuildGlobResultFromIncludeItem(itemElement, removeElementCache);
2623
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.Build.Engine.UnitTests (2)
InstanceFromRemote\FakeProjectLink.cs (2)
91
public override List<
GlobResult
> GetAllGlobs(EvaluationContext evaluationContext) => throw new NotImplementedException();
93
public override List<
GlobResult
> GetAllGlobs(string itemType, EvaluationContext evaluationContext) => throw new NotImplementedException();
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\ProjectFile.cs (1)
203
static FileGlobs GetFileGlobs(
GlobResult
g)