1 implementation of ICompilationReferencesProvider
Microsoft.AspNetCore.Mvc (1)
MvcServiceCollectionExtensions.cs (1)
339private sealed class FrameworkAssemblyPart : AssemblyPart, ICompilationReferencesProvider
4 references to ICompilationReferencesProvider
Microsoft.AspNetCore.Mvc (1)
MvcServiceCollectionExtensions.cs (1)
346IEnumerable<string> ICompilationReferencesProvider.GetReferencePaths() => Enumerable.Empty<string>();
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (2)
MvcRazorRuntimeCompilationOptions.cs (1)
28/// By default, the runtime compiler <see cref="ICompilationReferencesProvider"/> to gather references
RazorReferenceManager.cs (1)
58if (part is ICompilationReferencesProvider compilationReferenceProvider)
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.Test (1)
RazorReferenceManagerTest.cs (1)
41part.As<ICompilationReferencesProvider>()