I create my solution by using Asp.net MVC pattern which has at least 4 projects.
- App.Models
- App.Globalization
- App.Controllers
- References : App.Model and App.Globalization
- App.Views
- References : App.Model, App.Globalization and App.Controller
I need to create .net resources file for using by both App.Controller project and App.Views project. First, I try to create App.Globalization project for sharing resources. But I need to save resx file in App_Globalization folder in App.Views project and save designer.cs file(generated code of resx file) in App.Globalization project because it's easy to modify & save data in resources file.
Is it possible for creating separated resouce files for Asp.net MVC without using custom tool(s) or post-build command?