3 instantiations of CompositeGlob
Microsoft.Build (3)
Evaluation\GlobResultBuilder.cs (1)
168(not null, not null) => new MSBuildGlobWithGaps(includeGlob, new CompositeGlob(excludeGlob, removeGlob))
Globbing\CompositeGlob.cs (2)
94_ => new CompositeGlob(immutableGlobs) 134return new CompositeGlob(builder.ToImmutable());
8 references to CompositeGlob
Microsoft.Build (8)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
919var glob = CompositeGlob.Create(
Evaluation\GlobResultBuilder.cs (2)
134var includeGlob = CompositeGlob.Create(includeGlobFragmentsList.Select(f => f.ToMSBuildGlob())); 153removeGlob = CompositeGlob.Create(removeItemElement.Globs);
Evaluation\ItemSpec.cs (2)
109return CompositeGlob.Create(ReferencedItems.Select(i => i.ItemAsValueFragment.ToMSBuildGlob())); 386return CompositeGlob.Create(Fragments.Select(f => f.ToMSBuildGlob()));
Globbing\MSBuildGlobWithGaps.cs (1)
60Gaps = CompositeGlob.Create(gaps);
Globbing\Visitor\GlobVisitor.cs (2)
15if (glob is CompositeGlob compositeGlob) 37protected virtual void VisitCompositeGlob(CompositeGlob compositeGlob)