2 implementations of GetResolvedAnalyzerPath
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\ProgramFilesAnalyzerPathResolver.cs (1)
41public string GetResolvedAnalyzerPath(string originalAnalyzerPath)
DiagnosticAnalyzer\ShadowCopyAnalyzerPathResolver.cs (1)
303public string GetResolvedAnalyzerPath(string originalAnalyzerPath)
3 references to GetResolvedAnalyzerPath
Microsoft.CodeAnalysis (3)
DiagnosticAnalyzer\AnalyzerAssemblyLoader.cs (3)
44/// and the path returned after calling <see cref="IAnalyzerPathResolver.GetResolvedAnalyzerPath(string)"/>. In the 72/// the key is the original path before it is considered by <see cref="IAnalyzerPathResolver.GetResolvedAnalyzerPath(string)"/>. 166resolvedPath = resolver.GetResolvedAnalyzerPath(originalPath);