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