4 overrides of FileExists
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.LoggingStrongNameProvider.cs (1)
21internal override bool FileExists(string? fullPath)
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\ThrowingStrongNameFileSystem.cs (1)
20internal override bool FileExists(string fullPath) => throw new IOException();
Platform\Custom\SigningTestHelpers.cs (1)
93internal override bool FileExists(string fullPath)
Microsoft.CodeAnalysis.UnitTests (1)
StrongNameProviderTests.cs (1)
84internal override bool FileExists(string fullPath)
3 references to FileExists
Microsoft.CodeAnalysis (3)
CommandLine\CommonCompiler.LoggingStrongNameProvider.cs (1)
28return base.FileExists(fullPath);
StrongName\DesktopStrongNameProvider.cs (2)
122if (fileSystem.FileExists(path)) 136if (fileSystem.FileExists(combinedPath))