4 overrides of NormalizePath
Microsoft.CodeAnalysis (1)
SourceFileResolver.cs (1)
96public override string? NormalizePath(string path, string? baseFilePath)
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
ScriptTests.cs (1)
1075public override string NormalizePath(string path, string baseFilePath) => path;
Microsoft.CodeAnalysis.Rebuild (1)
RebuildSourceReferenceResolver.cs (1)
43public override string? NormalizePath(string path, string? baseFilePath)
Microsoft.CodeAnalysis.Test.Utilities (1)
Mocks\TestSourceReferenceResolver.cs (1)
42public override string NormalizePath(string path, string baseFilePath) => path;
7 references to NormalizePath
ConfigurationSchemaGenerator (1)
RuntimeSource\Configuration.Binder\Specs\InterceptorInfo.cs (1)
193return sourceReferenceResolver?.NormalizePath(operationSyntaxTree.FilePath, baseFilePath: null) ?? operationSyntaxTree.FilePath;
Microsoft.AspNetCore.Http.RequestDelegateGenerator (1)
src\Shared\RoslynUtils\SyntaxTreeExtensions.cs (1)
13resolver?.NormalizePath(tree.FilePath, baseFilePath: null) ?? tree.FilePath;
Microsoft.CodeAnalysis (3)
Emit\DebugDocumentsBuilder.cs (1)
74normalizedPath = _resolver.NormalizePath(path, basePath) ?? path;
Syntax\SyntaxTree.cs (2)
293return resolver.NormalizePath(mappedSpan.Path, baseFilePath: mappedSpan.HasMappedPath ? FilePath : null) ?? mappedSpan.Path; 307return resolver.NormalizePath(FilePath, baseFilePath: null) ?? FilePath;
Microsoft.CodeAnalysis.CSharp (2)
Compilation\CSharpCompilation.cs (1)
1074var path = resolver?.NormalizePath(tree.FilePath, baseFilePath: null) ?? tree.FilePath;
Utilities\InterceptableLocation.cs (1)
80var mappedPath = _resolver?.NormalizePath(_path, baseFilePath: null) ?? _path;