6 references to MSBuildGlobWithGaps
Microsoft.Build (3)
Definition\Project.cs (3)
2660
(not null, null) => new
MSBuildGlobWithGaps
(includeGlob, excludeGlob),
2661
(null, not null) => new
MSBuildGlobWithGaps
(includeGlob, removeGlob),
2662
(not null, not null) => new
MSBuildGlobWithGaps
(includeGlob, new CompositeGlob(excludeGlob, removeGlob))
Microsoft.Build.Engine.UnitTests (3)
Globbing\CompositeGlob_Tests.cs (1)
127
new
MSBuildGlobWithGaps
(g3, MSBuildGlob.Parse("x*")),
Globbing\MSBuildGlobWithGaps_Tests.cs (2)
26
var glob = new
MSBuildGlobWithGaps
(MSBuildGlob.Parse("a*"), MSBuildGlob.Parse("b*"));
34
var glob = new
MSBuildGlobWithGaps
(MSBuildGlob.Parse("a*"), MSBuildGlob.Parse("*b"));