19 references to FileSpecRegexParts
Microsoft.Build.Framework (19)
Utilities\FileMatcher.cs (19)
1315int actualLength = FileSpecRegexParts.BeginningOfLine.Length + 1316FileSpecRegexParts.WildcardGroupStart.Length + 1317FileSpecRegexParts.FilenameGroupStart.Length + 1318(FileSpecRegexParts.GroupEnd.Length * 2) + 1319FileSpecRegexParts.EndOfLine.Length; 1377regex.Append(FileSpecRegexParts.BeginningOfLine); 1383regex.Append(FileSpecRegexParts.UncSlashSlash); 1404regex.Append(FileSpecRegexParts.WildcardGroupStart); 1410regex.Append(FileSpecRegexParts.LeftDirs); 1421regex.Append(FileSpecRegexParts.MiddleDirs); 1429regex.Append(FileSpecRegexParts.GroupEnd); 1449regex.Append(FileSpecRegexParts.FilenameGroupStart); 1460regex.Append(FileSpecRegexParts.AnythingButDot); 1464regex.Append(FileSpecRegexParts.AnySingleCharacterButDot); 1477regex.Append(FileSpecRegexParts.GroupEnd); 1478regex.Append(FileSpecRegexParts.EndOfLine); 1488regex.Append(FileSpecRegexParts.AnyNonSeparator); 1492regex.Append(FileSpecRegexParts.SingleCharacter); 1496regex.Append(FileSpecRegexParts.DirSeparator);