1 implementation of FileExists
MSBuildTaskHost (1)
FileSystem\MSBuildTaskHostFileSystem.cs (1)
78public bool FileExists(string path)
9 references to FileExists
MSBuildTaskHost (9)
BuildEnvironmentHelper.cs (3)
214if (FileSystems.Default.FileExists(msBuildExe)) 218else if (FileSystems.Default.FileExists(msBuildDll)) 342if (!string.IsNullOrEmpty(msBuildExePath) && FileSystems.Default.FileExists(msBuildExePath))
FileUtilities.cs (3)
1025? FileExistenceCache.GetOrAdd(fullPath, fullPath => fileSystem.FileExists(fullPath)) 1026: fileSystem.FileExists(fullPath); 1453if (fileSystem.FileExists(possibleFileDirectory))
Modifiers.cs (2)
528if (FileSystems.Default.FileExists(unescapedItemSpec)) 544if (FileSystems.Default.FileExists(unescapedItemSpec))
TaskEngineAssemblyResolver.cs (1)
106if (FileSystems.Default.FileExists(_taskAssemblyFile))