1 write to Assembly
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationParts\AssemblyPart.cs (1)
19Assembly = assembly ?? throw new ArgumentNullException(nameof(assembly));
5 references to Assembly
Microsoft.AspNetCore.Mvc (2)
MvcServiceCollectionExtensions.cs (2)
326if (!partManager.ApplicationParts.OfType<AssemblyPart>().Any(p => p.Assembly == mvcTagHelpersAssembly)) 332if (!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"/>. 30public override string Name => Assembly.GetName().Name!; 33public IEnumerable<TypeInfo> Types => Assembly.DefinedTypes;