19 references to FileSpecRegexParts
Microsoft.Build.Framework (19)
Utilities\FileMatcher.cs (19)
1195int actualLength = FileSpecRegexParts.BeginningOfLine.Length + 1196FileSpecRegexParts.WildcardGroupStart.Length + 1197FileSpecRegexParts.FilenameGroupStart.Length + 1198(FileSpecRegexParts.GroupEnd.Length * 2) + 1199FileSpecRegexParts.EndOfLine.Length; 1257regex.Append(FileSpecRegexParts.BeginningOfLine); 1263regex.Append(FileSpecRegexParts.UncSlashSlash); 1284regex.Append(FileSpecRegexParts.WildcardGroupStart); 1290regex.Append(FileSpecRegexParts.LeftDirs); 1301regex.Append(FileSpecRegexParts.MiddleDirs); 1309regex.Append(FileSpecRegexParts.GroupEnd); 1329regex.Append(FileSpecRegexParts.FilenameGroupStart); 1340regex.Append(FileSpecRegexParts.AnythingButDot); 1344regex.Append(FileSpecRegexParts.AnySingleCharacterButDot); 1357regex.Append(FileSpecRegexParts.GroupEnd); 1358regex.Append(FileSpecRegexParts.EndOfLine); 1368regex.Append(FileSpecRegexParts.AnyNonSeparator); 1372regex.Append(FileSpecRegexParts.SingleCharacter); 1376regex.Append(FileSpecRegexParts.DirSeparator);