I have a .net mvc solution with multiple projects and would like to use the Westwind globalization outside of the main mvc project.
I realize I can't run the Westwind app in a class library so what I was trying to do is have the web interface run in the main project and then have the Resources.cs
created into its own project. (main reason is the different projects that would need it would cause a circular redundancy issue)
What I tried to do was setup the web.config stronglyTypedGlobalResource="..\Westwind\Properties\Resources.cs,AppResources"
but I can't do a relative project below the root.
Maybe there is a better way to accomplish this other than the web.config
change. Any suggestions would be great.
For those reading that don't know the Westwind, basically it will create a resources.cs
file for language translation based on a database table. So westwind isn't really the issue, just want project a to save a file to project b.
Thanx