7 references to MAX_PATH
Microsoft.Build.Framework (6)
NativeMethods.cs (5)
548internal static bool HasMaxPath => MaxPath == MAX_PATH; 581_maxPath = isMaxPathRestricted ? MAX_PATH : int.MaxValue; 1512char* buffer = stackalloc char[MAX_PATH]; 1513int fullPathLength = GetFullPathWin32(path, MAX_PATH, buffer, IntPtr.Zero); 1516if (fullPathLength > MAX_PATH)
Utilities\FileMatcher.cs (1)
1204using (var matchFileExpression = new ReuseableStringBuilder(FileSpecRegexMinLength + NativeMethods.MAX_PATH))
Microsoft.Build.Tasks.Core (1)
ComReference.cs (1)
409for (int bufferSize = NativeMethodsShared.MAX_PATH; bufferSize <= NativeMethodsShared.MaxPath; bufferSize *= 2)