1 write to Assembly
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationParts\AssemblyPart.cs (1)
19
Assembly
= assembly ?? throw new ArgumentNullException(nameof(assembly));
5 references to Assembly
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 (3)
ApplicationParts\AssemblyPart.cs (3)
23
/// Gets the <see cref="
Assembly
"/> of the <see cref="ApplicationPart"/>.
30
public override string Name =>
Assembly
.GetName().Name!;
33
public IEnumerable<TypeInfo> Types =>
Assembly
.DefinedTypes;