1 instantiation of GlobFragment
Microsoft.Build (1)
Evaluation\ItemSpec.cs (1)
248fragments.Add(new GlobFragment(filespecUnescaped, projectDirectory));
5 references to GlobFragment
Microsoft.Build (5)
Definition\Project.cs (2)
2621ImmutableArray<ItemSpecFragment> includeGlobFragments = includeItemspec.Fragments.Where(f => f is GlobFragment && f.TextFragment.IndexOfAny(s_invalidGlobChars) == -1).ToImmutableArray(); 2830else if (fragment is GlobFragment)
Evaluation\ItemSpec.cs (1)
398if (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);