2 overrides of ResolveReference
Microsoft.CodeAnalysis (1)
SourceFileResolver.cs (1)
102
public override string?
ResolveReference
(string path, string? baseFilePath)
Microsoft.CodeAnalysis.Rebuild (1)
RebuildSourceReferenceResolver.cs (1)
66
public override string?
ResolveReference
(string path, string? baseFilePath) => throw ExceptionUtilities.Unreachable();
5 references to ResolveReference
Microsoft.CodeAnalysis (2)
Compilation\SourceReferenceResolver.cs (2)
43
/// <param name="resolvedPath">Path returned by <see cref="
ResolveReference
(string, string)"/>.</param>
64
/// <param name="resolvedPath">Path returned by <see cref="
ResolveReference
(string, string)"/>.</param>
Microsoft.CodeAnalysis.CSharp (2)
CommandLine\CSharpCompiler.cs (1)
359
string? resolvedPath = resolver.
ResolveReference
(path, tree.FilePath);
Compilation\SyntaxAndDeclarationManager.cs (1)
226
resolvedFilePath = resolver.
ResolveReference
(path, baseFilePath: tree.FilePath);
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCompiler.vb (1)
286
Dim resolvedPath = resolver.
ResolveReference
(path, tree.FilePath)