ResXGenerator is a C# source generator to generate strongly-typed resource classes for looking up localized strings.
NOTE: This is an independent fork of VocaDb/ResXFileCodeGenerator.
Install the Aigamo.ResXGenerator
package:
dotnet add package Aigamo.ResXGenerator
Generated source from ActivityEntrySortRuleNames.resx:
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
#nullable enable
namespace Resources
{
using System.Globalization;
using System.Resources;
public static class ActivityEntrySortRuleNames
{
private static ResourceManager? s_resourceManager;
public static ResourceManager ResourceManager => s_resourceManager ??= new ResourceManager("VocaDb.Web.App_GlobalResources.ActivityEntrySortRuleNames", typeof(ActivityEntrySortRuleNames).Assembly);
public static CultureInfo? CultureInfo { get; set; }
/// <summary>
/// Looks up a localized string similar to Oldest.
/// </summary>
public static string? CreateDate => ResourceManager.GetString(nameof(CreateDate), CultureInfo);
/// <summary>
/// Looks up a localized string similar to Newest.
/// </summary>
public static string? CreateDateDescending => ResourceManager.GetString(nameof(CreateDateDescending), CultureInfo);
}
}
-
The generator now utilizes the IIncrementalGenerator API to instantly update the generated code, thus giving you instant intellisense.
-
Added error handling for multiple members of same name, and members that have same name as class. These are clickable in visual studio to lead you to the source of the error, unlike before where they resulted in broken builds and you had to figure out why.
-
Namespace naming fixed for resx files in the top level folder.
-
Resx files can now be named with multiple extensions, e.g. myresources.cshtml.resx and will result in class being called myresources.
-
Added the ability to generate inner classes, partial outer classes and non-static members. Very useful if you want to ensure that only a particular class can use those resources instead of being spread around the codebase.
-
Use same 'Link' setting as msbuild uses to determine embedded file name.
-
Can set a class postfix name
- The generator can now generate code to lookup translations instead of using the 20 year old System.Resources.ResourceManager
Use cases: VocaDB/ResXFileCodeGenerator#2.
Since version 2.0.0, ResXGenerator generates internal classes by default. You can change this behavior by setting PublicClass
to true
.
<ItemGroup>
<EmbeddedResource Update="Resources\ArtistCategoriesNames.resx">
<PublicClass>true</PublicClass>
</EmbeddedResource>
</ItemGroup>
or
<ItemGroup>
<EmbeddedResource Update="Resources\ArtistCategoriesNames.resx" PublicClass="true" />
</ItemGroup>
If you want to apply this globally, use
<PropertyGroup>
<ResXGenerator_PublicClass>true</ResXGenerator_PublicClass>
</PropertyGroup>
Use cases: VocaDB/ResXFileCodeGenerator#1.
<PropertyGroup>
<ResXGenerator_NullForgivingOperators>true</ResXGenerator_NullForgivingOperators>
</PropertyGroup>
By setting ResXGenerator_NullForgivingOperators
to true
, ResXGenerator generates
public static string CreateDate => ResourceManager.GetString(nameof(CreateDate), CultureInfo)!;
instead of
public static string? CreateDate => ResourceManager.GetString(nameof(CreateDate), CultureInfo);
To use generated resources with Microsoft.Extensions.Localization IStringLocalizer<T>
and resource manager, the resolved type cannot be a static class. You can disable default behavior per file by setting the value to false
.
<ItemGroup>
<EmbeddedResource Update="Resources\ArtistCategoriesNames.resx">
<StaticClass>false</StaticClass>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_StaticClass>false</ResXGenerator_StaticClass>
</PropertyGroup>
With global non-static class you can also reset StaticClass
per file by setting the value to anything but false
.
To extend an existing class, you can make your classes partial.
<ItemGroup>
<EmbeddedResource Update="Resources\ArtistCategoriesNames.resx">
<PartialClass>true</PartialClass>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_PartialClass>true</ResXGenerator_PartialClass>
</PropertyGroup>
In some rare cases it might be useful for the members to be non-static.
<ItemGroup>
<EmbeddedResource Update="Resources\ArtistCategoriesNames.resx">
<StaticMembers>false</StaticMembers>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_StaticMembers>false</ResXGenerator_StaticMembers>
</PropertyGroup>
In some cases the it is useful if the name of the generated class doesn't follow the filename.
A clear example is Razor pages that always generates a class for the code-behind named "-Model". This example configuration allows you to use Resources.MyResource in your model, or @Model.Resources.MyResource in your cshtml file.
<ItemGroup>
<EmbeddedResource Update="**/Pages/*.resx">
<ClassNamePostfix>Model</ClassNamePostfix>
<StaticMembers>false</StaticMembers>
<StaticClass>false</StaticClass>
<PartialClass>true</PartialClass>
<PublicClass>true</PublicClass>
<InnerClassVisibility>public</InnerClassVisibility>
<PartialClass>false</PartialClass>
<InnerClassInstanceName>Resources</InnerClassInstanceName>
<InnerClassName>_Resources</InnerClassName>
</EmbeddedResource>
</ItemGroup>
or just the postfix globally
<PropertyGroup>
<ResXGenerator_ClassNamePostfix>Model</ResXGenerator_ClassNamePostfix>
</PropertyGroup>
If your resx files are organized along with code files, it can be quite useful to ensure that the resources are not accessible outside the specific class the resx file belong to.
<ItemGroup>
<EmbeddedResource Update="**/*.resx">
<DependentUpon>$([System.String]::Copy('%(FileName).cs'))</DependentUpon>
<InnerClassName>MyResources</InnerClassName>
<InnerClassVisibility>private</InnerClassVisibility>
<InnerClassInstanceName>EveryoneLikeMyNaming</InnerClassInstanceName>
<StaticMembers>false</StaticMembers>
<StaticClass>false</StaticClass>
<PartialClass>true</PartialClass>
</EmbeddedResource>
<EmbeddedResource Update="**/*.??.resx;**/*.??-??.resx">
<DependentUpon>$([System.IO.Path]::GetFileNameWithoutExtension('%(FileName)')).resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_InnerClassName>MyResources</ResXGenerator_InnerClassName>
<ResXGenerator_InnerClassVisibility>private</ResXGenerator_InnerClassVisibility>
<ResXGenerator_InnerClassInstanceName>EveryoneLikeMyNaming</InnerClassInstanceName>
<ResXGenerator_StaticMembers>false</ResXGenerator_StaticMembers>
<ResXGenerator_StaticClass>false</ResXGenerator_StaticClass>
<ResXGenerator_PartialClass>true</ResXGenerator_PartialClass>
</PropertyGroup>
This example would generate files like this:
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
#nullable enable
namespace Resources
{
using System.Globalization;
using System.Resources;
public partial class ActivityEntryModel
{
public MyResources EveryoneLikeMyNaming { get; } = new();
private class MyResources
{
private static ResourceManager? s_resourceManager;
public static ResourceManager ResourceManager => s_resourceManager ??= new ResourceManager("VocaDb.Web.App_GlobalResources.ActivityEntryModel", typeof(ActivityEntryModel).Assembly);
public CultureInfo? CultureInfo { get; set; }
/// <summary>
/// Looks up a localized string similar to Oldest.
/// </summary>
public string? CreateDate => ResourceManager.GetString(nameof(CreateDate), CultureInfo);
/// <summary>
/// Looks up a localized string similar to Newest.
/// </summary>
public string? CreateDateDescending => ResourceManager.GetString(nameof(CreateDateDescending), CultureInfo);
}
}
}
By default inner classes are not generated, unless this setting is one of the following:
- Public
- Internal
- Private
- Protected
- SameAsOuter
Case is ignored, so you could use "private".
It is also possible to use "NotGenerated" to override on a file if the global setting is to generate inner classes.
<ItemGroup>
<EmbeddedResource Update="**/*.resx">
<InnerClassVisibility>private</InnerClassVisibility>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_InnerClassVisibility>private</ResXGenerator_InnerClassVisibility>
</PropertyGroup>
By default the inner class is named "Resources", which can be overridden with this setting:
<ItemGroup>
<EmbeddedResource Update="**/*.resx">
<InnerClassName>MyResources</InnerClassName>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_InnerClassName>MyResources</ResXGenerator_InnerClassName>
</PropertyGroup>
By default no instance is available of the class, but that can be made available if this setting is given.
<ItemGroup>
<EmbeddedResource Update="**/*.resx">
<InnerClassInstanceName>EveryoneLikeMyNaming</InnerClassInstanceName>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_InnerClassInstanceName>EveryoneLikeMyNaming</ResXGenerator_InnerClassInstanceName>
</PropertyGroup>
For brevity, settings to make everything non-static is omitted.
By default the ancient System.Resources.ResourceManager
is used.
Benefits of using System.Resources.ResourceManager
:
- Supports custom
CultureInfo
- Languages are only loaded the first time a language is referenced
- Only use memory for the languages used
- Can ship satellite dlls separately
Disadvantages of using System.Resources.ResourceManager
- The satellite dlls are always lazy loaded, so cold start penalty is high
- Satellite dlls requires that you can scan the dir for which files are available, which can cause issues in some project types
- Loading a satellite dll takes way more memory than just loading the respective strings
- Build time for .resources -> satellite dll can be quite slow (~150msec per file)
- Linker optimization doesn't work, since it cannot know which resources are referenced
Benefits of using GenerateCode
code generation:
- All languages are placed in the main dll, no more satellite dlls
- Lookup speed is ~600% faster (5ns vs 33ns)
- Zero allocations
- Very small code footprint (about 10 bytes per language, instead of including the entire
System.Resources
) - Very fast build time
- Because all code is referencing the strings directly, the linker can see which strings are actually used and which are not.
- No cold start penalty
- Smaller combined size of dll (up to 50%, since it doesn't need to store the keys for every single language)
Disadvantages of using GenerateCode
code generation
- Since
CultureInfo
are pre-computed, customCultureInfo
are not supported (or rather, they always return the default language) - Cannot lookup "all" keys (unless using reflection)
- Main dll size increased since it contains all language strings (sometimes, the compiler can pack code strings much better than resource strings and it doesn't need to store the keys)
Notice, it is required to set GenerateResource
to false for all resx files to prevent the built-in resgen.exe from running.
<ItemGroup>
<EmbeddedResource Update="**/*.resx">
<GenerateCode>true</GenerateCode>
<GenerateResource>false</GenerateResource>
</EmbeddedResource>
</ItemGroup>
or globally
<PropertyGroup>
<ResXGenerator_GenerateCode>true</ResXGenerator_GenerateCode>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Update="@(EmbeddedResource)">
<GenerateResource>false</GenerateResource>
</EmbeddedResource>
</ItemGroup>
If you get build error MSB3030, add this to your csproj to prevent it from trying to copy satellite dlls that no longer exists
<Target Name="PreventMSB3030" DependsOnTargets="ComputeIntermediateSatelliteAssemblies" BeforeTargets="GenerateSatelliteAssemblies" >
<ItemGroup>
<IntermediateSatelliteAssembliesWithTargetPath Remove="@(IntermediateSatelliteAssembliesWithTargetPath)"></IntermediateSatelliteAssembliesWithTargetPath>
</ItemGroup>
</Target>
Linked resources namespace follow Link
if it is set. The Link
setting is also used by msbuild built-in 'resgen.exe' to determine the embedded filename.
Use-case: Linking .resx
files from outside source (e.g. generated in a localization sub-module by translators) and expose them as "Resources" namespace.
<ItemGroup>
<EmbeddedResource Include="..\..\Another.Project\Translations\*.resx">
<Link>Resources\%(FileName)%(Extension)</Link>
<PublicClass>true</PublicClass>
<StaticClass>false</StaticClass>
</EmbeddedResource>
<EmbeddedResource Update="..\..\Another.Project\Translations\*.*.resx">
<DependentUpon>$([System.IO.Path]::GetFilenameWithoutExtension([System.String]::Copy('%(FileName)'))).resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
You can also use the TargetPath
to just overwrite the namespace
<ItemGroup>
<EmbeddedResource Include="..\..\Another.Project\Translations\*.resx">
<TargetPath>Resources\%(FileName)%(Extension)</TargetPath>
<PublicClass>true</PublicClass>
<StaticClass>false</StaticClass>
</EmbeddedResource>
<EmbeddedResource Update="..\..\Another.Project\Translations\*.*.resx">
<DependentUpon>$([System.IO.Path]::GetFilenameWithoutExtension([System.String]::Copy('%(FileName)'))).resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
It is also possible to set the namespace using the CustomToolNamespace
setting. Unlike the Link
and TargetPath
, which will prepend the assemblies namespace and includes the filename, the CustomToolNamespace
is taken verbatim.
<ItemGroup>
<EmbeddedResource Update="**\*.resx">
<CustomToolNamespace>MyNamespace.AllMyResourcesAreBelongToYouNamespace</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>
Individual resx files can also be excluded from being processed by setting the SkipFile
metadata to true.
<ItemGroup>
<EmbeddedResource Update="ExcludedFile.resx">
<SkipFile>true</SkipFile>
</EmbeddedResource>
</ItemGroup>
Alternatively it can be set with the attribute SkipFile="true"
.
<ItemGroup>
<EmbeddedResource Update="ExcludedFile.resx" SkipFile="true" />
</ItemGroup>
- Introducing C# Source Generators | .NET Blog
- microsoft/CsWin32: A source generator to add a user-defined set of Win32 P/Invoke methods and supporting types to a C# project.
- kenkendk/mdresxfilecodegenerator: Resx Designer Generator
- dotnet/ResXResourceManager: Manage localization of all ResX-Based resources in one central place.
- roslyn/source-generators.cookbook.md at master · dotnet/roslyn
- roslyn/Using Additional Files.md at master · dotnet/roslyn
- ufcpp - YouTube
- amis92/csharp-source-generators: A list of C# Source Generators (not necessarily awesome) and associated resources: articles, talks, demos.
- A NuGet package workflow using GitHub Actions | by Andrew Craven | Medium