10 references to FileUtilitiesRegex
Microsoft.Build.Framework (9)
FileUtilities.cs (2)
1004if (FileUtilitiesRegex.IsDrivePattern(fileSpec) || 1005FileUtilitiesRegex.IsUncPattern(fullPath))
ItemSpecModifiers.cs (7)
498FileUtilitiesRegex.StartsWithUncPattern(root), 551if (FileUtilitiesRegex.StartsWithDrivePattern(directory)) 557length = FileUtilitiesRegex.StartsWithUncPatternMatchLength(directory); 620int uncMatchLength = FileUtilitiesRegex.StartsWithUncPatternMatchLength(path); 623if (FileUtilitiesRegex.IsDrivePattern(path) || 624FileUtilitiesRegex.IsDrivePatternWithSlash(path) || 639if (FileUtilitiesRegex.StartsWithDrivePattern(path) &&
Microsoft.Build.Tasks.Core (1)
Exec.cs (1)
468workingDirectoryIsUNC = FileUtilitiesRegex.StartsWithUncPattern(_workingDirectory);