1 instantiation of GlobFragment
Microsoft.Build (1)
Evaluation\ItemSpec.cs (1)
247fragments.Add(new GlobFragment(filespecUnescaped, projectDirectory));
5 references to GlobFragment
Microsoft.Build (5)
Definition\Project.cs (2)
2627ItemSpecFragment[] includeGlobFragments = includeItemspec.Fragments.Where(f => f is GlobFragment && f.TextFragment.AsSpan().IndexOfAny(s_invalidGlobChars) < 0).ToArray(); 2836else if (fragment is GlobFragment)
Evaluation\ItemSpec.cs (1)
397if (fragment is ValueFragment || fragment is GlobFragment)
Evaluation\LazyItemEvaluator.IncludeOperation.cs (1)
92else if (fragment is GlobFragment globFragment)
Evaluation\LazyItemEvaluator.RemoveOperation.cs (1)
104var globs = _itemSpec.Fragments.OfType<GlobFragment>().Select(g => g.TextFragment);