1 implementation of IEditAndContinueService
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueService.cs (1)
28
internal sealed class EditAndContinueService :
IEditAndContinueService
10 references to IEditAndContinueService
Microsoft.CodeAnalysis.ExternalAccess.HotReload (2)
Api\HotReloadService.cs (2)
134
private readonly
IEditAndContinueService
_encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
263
public
IEditAndContinueService
EncService
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\EditAndContinueService.cs (2)
42
internal sealed class WorkspaceService(
IEditAndContinueService
service) : IEditAndContinueWorkspaceService
44
public
IEditAndContinueService
Service { get; } = service;
EditAndContinue\IEditAndContinueService.cs (1)
15
IEditAndContinueService
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)
20
private
IEditAndContinueService
GetLocalService()
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (1)
117
private
IEditAndContinueService
GetLocalService()
ExternalAccess\UnitTesting\API\UnitTestingHotReloadService.cs (1)
54
private readonly
IEditAndContinueService
_encService = services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;