13 references to ApplicationParts
Microsoft.AspNetCore.Identity.UI (1)
IdentityBuilderUIExtensions.cs (1)
54
apm.
ApplicationParts
.Add(part);
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)
72
/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="ApplicationPartManager.
ApplicationParts
"/> on the
88
manager.
ApplicationParts
.Add(applicationPart);
DependencyInjection\MvcCoreMvcCoreBuilderExtensions.cs (2)
154
/// Adds an <see cref="ApplicationPart"/> to the list of <see cref="ApplicationPartManager.
ApplicationParts
"/> on the
170
manager.
ApplicationParts
.Add(applicationPart);
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
RazorReferenceManager.cs (1)
60
foreach (var part in _partManager.
ApplicationParts
)