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