13 references to DirectoryExistsNoThrow
Microsoft.Build (4)
BackEnd\Components\SdkResolution\DefaultSdkResolver.cs (1)
33return FileUtilities.DirectoryExistsNoThrow(sdkPath)
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (2)
108if ((string.IsNullOrEmpty(rootFolder) || !FileUtilities.DirectoryExistsNoThrow(rootFolder)) && AdditionalResolversFolder == null) 140if (!string.IsNullOrEmpty(rootFolder) && FileUtilities.DirectoryExistsNoThrow(rootFolder))
Evaluation\IntrinsicFunctions.cs (1)
559return FileUtilities.DirectoryExistsNoThrow(path);
Microsoft.Build.Tasks.Core (5)
AssemblyDependency\AssemblyFoldersFromConfig\AssemblyFoldersFromConfigCache.cs (1)
53.Where(absolutePath => FileUtilities.DirectoryExistsNoThrow(absolutePath))
AssemblyDependency\ResolveAssemblyReference.cs (1)
3452p => FileUtilities.DirectoryExistsNoThrow(p),
GetSDKReferenceFiles.cs (2)
1166if (FileUtilities.DirectoryExistsNoThrow(redistPath)) 1180if (FileUtilities.DirectoryExistsNoThrow(referencesPath))
MakeDir.cs (1)
67if (!FileUtilities.DirectoryExistsNoThrow(absolutePath))
Microsoft.Build.Utilities.Core (4)
ToolLocationHelper.cs (4)
665if (FileUtilities.DirectoryExistsNoThrow(legacyWindowsMetadataLocation)) 2428if (FileUtilities.DirectoryExistsNoThrow(referenceAssemblyPath)) 2823if (FileUtilities.DirectoryExistsNoThrow(directoryName)) 2936diskRoots.RemoveAll(x => !FileUtilities.DirectoryExistsNoThrow(x));