This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
Hi, I changed the check for the english resource. It was failing because my path contains also '.'
LanguageRemover
Program.cs
private static bool ShouldKeep(string[] langsToKeep, string fileName)...
var realFileName = Path.GetFileName(fileName);if (realFileName.IndexOf('.') == realFileName.LastIndexOf('.')) { return true; }
...
This is fixed in the repository though if it were me I would avoid using . in folder names
Best,
Joe
Thanks, I didn't get your point with avoid using . in folder names. Mojo uses them also all the time : mojoPortal.Business, mojoPortal.Net, ...
K
I meant in a web site, those folders aren't part of the Web.
Indeed, I would not use . in web folders either. Bad idea.