1 implementation of FileExists
MSBuildTaskHost (1)
FileSystem\MSBuildTaskHostFileSystem.cs (1)
78
public bool
FileExists
(string path)
11 references to FileExists
MSBuildTaskHost (11)
BuildEnvironmentHelper.cs (4)
213
if (FileSystems.Default.
FileExists
(msBuildExe))
217
else if (FileSystems.Default.
FileExists
(msBuildDll))
341
if (!string.IsNullOrEmpty(msBuildExePath) && FileSystems.Default.
FileExists
(msBuildExePath))
611
var existsCheck = mode == BuildEnvironmentMode.VisualStudio ? new Func<string, bool>(_ => true) : FileSystems.Default.
FileExists
;
FileUtilities.cs (4)
81
return !FileSystems.Default.
FileExists
(lowerCased);
1087
? FileExistenceCache.GetOrAdd(fullPath, fullPath => fileSystem.
FileExists
(fullPath))
1088
: fileSystem.
FileExists
(fullPath);
1515
if (fileSystem.
FileExists
(possibleFileDirectory))
Modifiers.cs (2)
329
if (FileSystems.Default.
FileExists
(unescapedItemSpec))
345
if (FileSystems.Default.
FileExists
(unescapedItemSpec))
TaskEngineAssemblyResolver.cs (1)
106
if (FileSystems.Default.
FileExists
(_taskAssemblyFile))