0

when i try to create a resource file named Labels.resx it works fine and a Labels.designer.cs being created well, but when i try to create another resource file for a specific locale like Labels.en-US.resx the resource file gets corrupted and the designer will be empty!

[Edit from comments]: The resource generator specified for the .resx file is GlobalResourceProxyGenerator

whats wrong with it? am I doing anything wrong?

Alexei - check Codidact
  • 22,016
  • 16
  • 145
  • 164
Hooman Limouee
  • 1,143
  • 2
  • 21
  • 43

1 Answers1

1

Based on comments, the solution is to use another resource generator:

PublicResXFileCodeGenerator 

instead of

GlobalResourceProxyGenerator
Alexei - check Codidact
  • 22,016
  • 16
  • 145
  • 164