11 references to ApplicationParts
Microsoft.AspNetCore.Mvc (4)
MvcServiceCollectionExtensions.cs (4)
326if (!partManager.ApplicationParts.OfType<AssemblyPart>().Any(p => p.Assembly == mvcTagHelpersAssembly)) 328partManager.ApplicationParts.Add(new FrameworkAssemblyPart(mvcTagHelpersAssembly)); 332if (!partManager.ApplicationParts.OfType<AssemblyPart>().Any(p => p.Assembly == mvcRazorAssembly)) 334partManager.ApplicationParts.Add(new FrameworkAssemblyPart(mvcRazorAssembly));
Microsoft.AspNetCore.Mvc.Core (7)
ApplicationParts\ApplicationPartManager.cs (2)
47provider.PopulateFeature(ApplicationParts, feature); 70ApplicationParts.Add(applicationPart);
ApplicationParts\IApplicationFeatureProviderOfT.cs (1)
20/// are stored in <see cref="ApplicationPartManager.ApplicationParts"/>. This ordering may be used by the feature
DependencyInjection\MvcCoreMvcBuilderExtensions.cs (2)
73/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="ApplicationPartManager.ApplicationParts"/> on the 89manager.ApplicationParts.Add(applicationPart);
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (2)
155/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="ApplicationPartManager.ApplicationParts"/> on the 171manager.ApplicationParts.Add(applicationPart);