I managed to successfully launch the application for an example of localization of asp.net mvc6, however all .resx files are placed in the same "resources" folder.
If you look at this sample application , you will notice that all resources are placed in the root directory: βResourcesβ and it is referenced in the Startup.cs file as follows:
services .AddMvc() .AddViewLocalization(options => options.ResourcesPath = "Resources") .AddDataAnnotationsLocalization();
The current application I'm working on has several areas, and ideally I would like to better organize these .resx files. Otherwise it will be very dirty.
Is this still possible in MVC6?
source share