I have a resource file in my project
ProjectName
|__Resources
|_ Resources.resx
When I do the Extract String to Resources it adds it as
Something.Text = ProjectName.Resources.resources.MyNewString;
The Class name for Resources is all lower case which means C# cannot find it.
It should have been
Something.Text = ProjectName.Resources.Resources.MyNewString;
Thank you for pointing out this issue. We will fix it and let you know once the fix is ready.