7 references to RootNamespaceAttribute
Microsoft.Extensions.Localization (7)
ResourceManagerStringLocalizerFactory.cs (6)
201/// <summary>Gets a <see cref="RootNamespaceAttribute"/> from the provided <see cref="Assembly"/>.</summary> 202/// <param name="assembly">The assembly to get a <see cref="RootNamespaceAttribute"/> from.</param> 203/// <returns>The <see cref="RootNamespaceAttribute"/> associated with the given <see cref="Assembly"/>.</returns> 205protected virtual RootNamespaceAttribute? GetRootNamespaceAttribute(Assembly assembly) 207return assembly.GetCustomAttribute<RootNamespaceAttribute>(); 212var rootNamespaceAttribute = GetRootNamespaceAttribute(assembly);
RootNamespaceAttribute.cs (1)
17/// Creates a new <see cref="RootNamespaceAttribute"/>.