1 type derived from AssemblyPart
Microsoft.AspNetCore.Mvc (1)
MvcServiceCollectionExtensions.cs (1)
339
private sealed class FrameworkAssemblyPart :
AssemblyPart
, ICompilationReferencesProvider
1 instantiation of AssemblyPart
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationParts\DefaultApplicationPartFactory.cs (1)
30
yield return new
AssemblyPart
(assembly);
4 references to AssemblyPart
Microsoft.AspNetCore.Mvc (2)
MvcServiceCollectionExtensions.cs (2)
326
if (!partManager.ApplicationParts.OfType<
AssemblyPart
>().Any(p => p.Assembly == mvcTagHelpersAssembly))
332
if (!partManager.ApplicationParts.OfType<
AssemblyPart
>().Any(p => p.Assembly == mvcRazorAssembly))
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationParts\ApplicationPartFactory.cs (1)
13
/// By default, Mvc registers each application assembly that it discovers as an <see cref="
AssemblyPart
"/>.
ApplicationParts\AssemblyPart.cs (1)
14
/// Initializes a new <see cref="
AssemblyPart
"/> instance.