Skip to content

Commit

Permalink
WIP: Hardcode namespace for Resx generation
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasvajk committed Apr 17, 2024
1 parent 3154a11 commit 2b2c760
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ protected override void GenerateAnalyzerConfig(IEnumerable<string> resources, st
{
using var sw = new StreamWriter(analyzerConfigPath);
sw.WriteLine("is_global = true");
sw.WriteLine("build_property.RootNamespace = abc");

foreach (var f in resources.Select(f => f.Replace('\\', '/')))
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
| Program | Program.<Main>$ |
| Program | Program.Program |
| abc.test | abc.test.Culture |
| abc.test | abc.test.GetResourceString |
| abc.test | abc.test.Key123 |
| abc.test | abc.test.Key456 |
| abc.test | abc.test.ResourceManager |
| abc.test | abc.test.s_resourceManager |

0 comments on commit 2b2c760

Please sign in to comment.