11 references to ApplicationParts
Microsoft.AspNetCore.Mvc (4)
MvcServiceCollectionExtensions.cs (4)
326
if (!partManager.
ApplicationParts
.OfType<AssemblyPart>().Any(p => p.Assembly == mvcTagHelpersAssembly))
328
partManager.
ApplicationParts
.Add(new FrameworkAssemblyPart(mvcTagHelpersAssembly));
332
if (!partManager.
ApplicationParts
.OfType<AssemblyPart>().Any(p => p.Assembly == mvcRazorAssembly))
334
partManager.
ApplicationParts
.Add(new FrameworkAssemblyPart(mvcRazorAssembly));
Microsoft.AspNetCore.Mvc.Core (7)
ApplicationParts\ApplicationPartManager.cs (2)
47
provider.PopulateFeature(
ApplicationParts
, feature);
70
ApplicationParts
.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
89
manager.
ApplicationParts
.Add(applicationPart);
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (2)
155
/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="ApplicationPartManager.
ApplicationParts
"/> on the
171
manager.
ApplicationParts
.Add(applicationPart);