8 references to ResourceLocationAttribute
Microsoft.Extensions.Localization (8)
ResourceLocationAttribute.cs (1)
16/// Creates a new <see cref="ResourceLocationAttribute"/>.
ResourceManagerStringLocalizerFactory.cs (7)
21/// <see cref="ResourceLocationAttribute"/> -> <see cref="LocalizationOptions.ResourcesPath"/> -> the project root. 192/// <summary>Gets a <see cref="ResourceLocationAttribute"/> from the provided <see cref="Assembly"/>.</summary> 193/// <param name="assembly">The assembly to get a <see cref="ResourceLocationAttribute"/> from.</param> 194/// <returns>The <see cref="ResourceLocationAttribute"/> associated with the given <see cref="Assembly"/>.</returns> 196protected virtual ResourceLocationAttribute? GetResourceLocationAttribute(Assembly assembly) 198return assembly.GetCustomAttribute<ResourceLocationAttribute>(); 224var resourceLocationAttribute = GetResourceLocationAttribute(assembly);