1 implementation of IFilePathService
Microsoft.CodeAnalysis.Razor.Workspaces (1)
AbstractFilePathService.cs (1)
10internal abstract class AbstractFilePathService : IFilePathService
29 references to IFilePathService
Microsoft.AspNetCore.Razor.Test.Common.Cohosting (1)
CohostTestBase.cs (1)
42private protected abstract IFilePathService FilePathService { get; }
Microsoft.CodeAnalysis.Razor.Workspaces (2)
DocumentMapping\RazorEditService.cs (2)
28IFilePathService filePathService, 33private readonly IFilePathService _filePathService = filePathService;
Microsoft.CodeAnalysis.Remote.Razor (8)
DocumentMapping\RemoteDocumentMappingService.cs (2)
20IFilePathService filePathService, 25private readonly IFilePathService _filePathService = filePathService;
DocumentMapping\RemoteRazorEditService.cs (1)
23IFilePathService filePathService,
FindAllReferences\RemoteFindAllReferencesService.cs (2)
34private readonly IFilePathService _filePathService = args.ExportProvider.GetExportedValue<IFilePathService>();
ProjectSystem\RemoteSnapshotManager.cs (2)
19internal sealed class RemoteSnapshotManager(IFilePathService filePathService, ITelemetryReporter telemetryReporter) 23public IFilePathService FilePathService { get; } = filePathService;
RemoteFilePathService.cs (1)
10[Export(typeof(IFilePathService)), Shared]
Microsoft.VisualStudio.LanguageServices.Razor (9)
LanguageClient\Cohost\CohostTextPresentationEndpoint.cs (2)
24IFilePathService filePathService, 28private readonly IFilePathService _filePathService = filePathService;
LanguageClient\Cohost\CohostUriPresentationEndpoint.cs (2)
27IFilePathService filePathService, 32private readonly IFilePathService _filePathService = filePathService;
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Navigation\CohostGoToDefinitionEndpoint.cs (2)
31IFilePathService filePathService) 36private readonly IFilePathService _filePathService = filePathService;
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Navigation\CohostGoToImplementationEndpoint.cs (2)
28IFilePathService filePathService) 33private readonly IFilePathService _filePathService = filePathService;
VisualStudioFilePathService.cs (1)
9[Export(typeof(IFilePathService))]
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (2)
Cohost\CohostEndpointTestBase.cs (2)
24private IFilePathService? _filePathService; 29private protected override IFilePathService FilePathService => _filePathService.AssumeNotNull();
Microsoft.VisualStudioCode.RazorExtension (5)
Services\VSCodeFilePathService.cs (1)
10[Export(typeof(IFilePathService)), Shared]
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Navigation\CohostGoToDefinitionEndpoint.cs (2)
31IFilePathService filePathService) 36private readonly IFilePathService _filePathService = filePathService;
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Navigation\CohostGoToImplementationEndpoint.cs (2)
28IFilePathService filePathService) 33private readonly IFilePathService _filePathService = filePathService;
Microsoft.VisualStudioCode.RazorExtension.UnitTests (2)
CohostEndpointTestBase.cs (2)
25private IFilePathService? _filePathService; 29private protected override IFilePathService FilePathService => _filePathService.AssumeNotNull();