2 implementations of IsAnalyzerPathHandled
Microsoft.CodeAnalysis.Workspaces (2)
src\Compilers\Core\Portable\DiagnosticAnalyzer\ProgramFilesAnalyzerPathResolver.cs (1)
38
public bool
IsAnalyzerPathHandled
(string analyzerPath)
src\Compilers\Core\Portable\DiagnosticAnalyzer\ShadowCopyAnalyzerPathResolver.cs (1)
153
public bool
IsAnalyzerPathHandled
(string analyzerFilePath) => true;
4 references to IsAnalyzerPathHandled
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (1)
162
if (current.
IsAnalyzerPathHandled
(originalPath))
src\Compilers\Core\Portable\DiagnosticAnalyzer\IAnalyzerPathResolver.cs (3)
23
/// The first instance to return true from <see cref="
IsAnalyzerPathHandled
(string)"/> will be considered to
47
/// This will only be called for paths that return true from <see cref="
IsAnalyzerPathHandled
(string)"/>.
57
/// This will only be called for paths that return true from <see cref="
IsAnalyzerPathHandled
(string)"/>.