1 implementation of ITagHelperDiscoveryService
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\TagHelperDiscoveryService.cs (1)
13internal sealed class TagHelperDiscoveryService : RazorEngineFeatureBase, ITagHelperDiscoveryService
4 references to ITagHelperDiscoveryService
Microsoft.CodeAnalysis.Razor.Compiler (4)
CSharp\CompilationTagHelperFeature.cs (2)
16private ITagHelperDiscoveryService? _discoveryService; 35_discoveryService = GetRequiredFeature<ITagHelperDiscoveryService>();
SourceGenerators\StaticCompilationTagHelperFeature.cs (2)
15private ITagHelperDiscoveryService? _discoveryService; 46_discoveryService = Engine.GetFeatures<ITagHelperDiscoveryService>().FirstOrDefault();