ResXGenerator
ResXGenerator copied to clipboard
ResXGenerator is a C# source generator to generate strongly-typed resource classes for looking up localized strings.
The resx file with images, icons, or files are generated as string now. It should be as below: ```xml ..\some_image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ``` ```cs /// /// Looks up...
@ycanardeau In my project I have: Resources1.en-US.resx Resources1.en-US.resx Having those files does not generate code. However, if I rename one of the two, it does: Resources1.resx Resources1.en-US.resx