1 implementation of IEditAndContinueService
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueService.cs (1)
28internal sealed class EditAndContinueService : IEditAndContinueService
10 references to IEditAndContinueService
Microsoft.CodeAnalysis.ExternalAccess.HotReload (2)
Api\HotReloadService.cs (2)
134private readonly IEditAndContinueService _encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service; 263public IEditAndContinueService EncService
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\EditAndContinueService.cs (2)
42internal sealed class WorkspaceService(IEditAndContinueService service) : IEditAndContinueWorkspaceService 44public IEditAndContinueService Service { get; } = service;
EditAndContinue\IEditAndContinueService.cs (1)
15IEditAndContinueService Service { get; }
EditAndContinue\IEditAndContinueSessionTracker.cs (2)
21/// Diagnostics reported by the last <see cref="IEditAndContinueService.EmitSolutionUpdateAsync"/> call. 23/// Does not include rude edits reported for added or changed documents, which are reported by <see cref="IEditAndContinueService.GetDocumentDiagnosticsAsync"/>,
EditAndContinue\Remote\DebuggingSessionProxy.cs (1)
20private IEditAndContinueService GetLocalService()
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (1)
117private IEditAndContinueService GetLocalService()
ExternalAccess\UnitTesting\API\UnitTestingHotReloadService.cs (1)
54private readonly IEditAndContinueService _encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;