10 references to Create
Microsoft.Build (6)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
839var glob = CompositeGlob.Create(
Definition\Project.cs (2)
2628var includeGlob = CompositeGlob.Create(includeGlobFragments.Select(f => f.ToMSBuildGlob())); 2647removeGlob = 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)
62Gaps = CompositeGlob.Create(gaps);
Microsoft.Build.Engine.OM.UnitTests (1)
Definition\Project_Tests.cs (1)
3739var uberGlob = CompositeGlob.Create(getAllGlobsResult.Select(r => r.MsBuildGlob));
Microsoft.Build.Engine.UnitTests (3)
Globbing\CompositeGlob_Tests.cs (3)
144IMSBuildGlob composite = CompositeGlob.Create(Enumerable.Empty<IMSBuildGlob>()); 154IMSBuildGlob composite = CompositeGlob.Create(new[] { glob }); 165IMSBuildGlob result = CompositeGlob.Create(new[] { glob1, glob2 });