1 implementation of INewDocumentFormattingProvider
Microsoft.CodeAnalysis.Features (1)
AddFileBanner\AbstractAddFileBannerNewDocumentFormattingProvider.cs (1)
16
internal abstract class AbstractAddFileBannerNewDocumentFormattingProvider :
INewDocumentFormattingProvider
6 references to INewDocumentFormattingProvider
Microsoft.CodeAnalysis.Features (6)
Formatting\AbstractNewDocumentFormattingService.cs (5)
19
private readonly IEnumerable<Lazy<
INewDocumentFormattingProvider
, LanguageMetadata>> _providers;
20
private IEnumerable<
INewDocumentFormattingProvider
>? _providerValues;
24
protected AbstractNewDocumentFormattingService(IEnumerable<Lazy<
INewDocumentFormattingProvider
, LanguageMetadata>> providers)
29
private IEnumerable<
INewDocumentFormattingProvider
> GetProviders()
37
foreach (
var
provider in GetProviders())
Formatting\ExportNewDocumentFormattingProviderAttribute.cs (1)
12
internal sealed class ExportNewDocumentFormattingProviderAttribute(string languageName) : ExportAttribute(typeof(
INewDocumentFormattingProvider
))