asp.net - Copy App_GlobalResources on deployment -
I have an ASP.NET web application that was first published using the published feature of VS 2008.
I recently switched to VS 2008 for "Web Deployment Projects" while I deployed, I noticed that the ~ / App_GlobalResources directory is no longer copied to the release folder on Build.
How can I ensure that the App_GlobalResources directory is copied?
Web deployment projects use aspnet_compiler.exe
. Excerpt from:
These files are compiled in the assembly and placed in the bin directory. An app_global resource sub-directory is not created under the main output directory. If the configuration file specifies applicable = "all", .resx and .resources files are copied to output directories. If they are referred by BuildProvider, they are not copied.
All resources are compiled in the assembly and put in the bin
folder. This is the way that web deployment projects were designed.
Comments
Post a Comment