We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7f6cc commit 3b38b98Copy full SHA for 3b38b98
ResXManager.VSIX/Visuals/MoveToResourceViewModel.cs
@@ -148,7 +148,9 @@ private static string GetLocalNamespace([CanBeNull] ProjectItem resxItem)
148
var localNamespace = rootNamespace;
149
if (resxFolder.StartsWith(projectFolder, StringComparison.OrdinalIgnoreCase))
150
{
151
- localNamespace += resxFolder.Substring(projectFolder.Length).Replace('\\', '.');
+ localNamespace += resxFolder.Substring(projectFolder.Length)
152
+ .Replace('\\', '.')
153
+ .Replace("My Project", "My"); // VB workaround
154
}
155
156
return localNamespace;
0 commit comments