1 implementation of ICopilotProposalAdjusterService
Microsoft.CodeAnalysis.Features (1)
Copilot\IProposalAdjusterService.cs (1)
38internal sealed class DefaultCopilotProposalAdjusterService() : ICopilotProposalAdjusterService
6 references to ICopilotProposalAdjusterService
Microsoft.CodeAnalysis.EditorFeatures (2)
Copilot\RoslynProposalAdjusterProvider.cs (2)
176var proposalAdjusterService = document.Project.Solution.Services.GetRequiredService<ICopilotProposalAdjusterService>();
Microsoft.CodeAnalysis.Features (2)
Copilot\IProposalAdjusterService.cs (2)
30/// <inheritdoc cref="ICopilotProposalAdjusterService.TryAdjustProposalAsync"/> 35[ExportWorkspaceService(typeof(ICopilotProposalAdjusterService), ServiceLayer.Default), Shared]
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\Copilot\RemoteCopilotProposalAdjusterService.cs (2)
31var service = solution.Services.GetRequiredService<ICopilotProposalAdjusterService>();