2 overrides of NormalizePath
Microsoft.CodeAnalysis (1)
SourceFileResolver.cs (1)
96
public override string?
NormalizePath
(string path, string? baseFilePath)
Microsoft.CodeAnalysis.Rebuild (1)
RebuildSourceReferenceResolver.cs (1)
43
public override string?
NormalizePath
(string path, string? baseFilePath)
6 references to NormalizePath
ConfigurationSchemaGenerator (1)
RuntimeSource\Configuration.Binder\Specs\InterceptorInfo.cs (1)
193
return sourceReferenceResolver?.
NormalizePath
(operationSyntaxTree.FilePath, baseFilePath: null) ?? operationSyntaxTree.FilePath;
Microsoft.CodeAnalysis (3)
Emit\DebugDocumentsBuilder.cs (1)
74
normalizedPath = _resolver.
NormalizePath
(path, basePath) ?? path;
Syntax\SyntaxTree.cs (2)
293
return resolver.
NormalizePath
(mappedSpan.Path, baseFilePath: mappedSpan.HasMappedPath ? FilePath : null) ?? mappedSpan.Path;
307
return resolver.
NormalizePath
(FilePath, baseFilePath: null) ?? FilePath;
Microsoft.CodeAnalysis.CSharp (2)
Compilation\CSharpCompilation.cs (1)
1157
var path = resolver?.
NormalizePath
(tree.FilePath, baseFilePath: null) ?? tree.FilePath;
Utilities\InterceptableLocation.cs (1)
82
var mappedPath = _resolver?.
NormalizePath
(_path, baseFilePath: null) ?? _path;