Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

On a deployed ASP.NET web site project, can I update a .resx file without recompiling?

I'm deploying an ASP.NET application to a locked down Production environment. Pushing assemblies (satellite resource assemblies included) into this environment has process associated with it, but copying non-assemblies to the environment does not.

On an ASP.NET web site project, can I update a .resx file without recompiling?

like image 857
Gabriel Isenberg Avatar asked Mar 31 '09 21:03

Gabriel Isenberg


People also ask

Do RESX files need to be deployed?

You do not need to deploy . resx file with your application.

How do you regenerate a RESX file?

resx file? If so, go to project properties, then the "Resources" tab, and there should be a big link to click to regenerate it.

What is a resources RESX file?

A . resx file contains a standard set of header information that describes the format of the resource entries, and specifies the versioning information for the XML code that parses the data. These files contain all the strings, labels, captions, and titles for all text in the three IBM Cognos Office components.

What is RESX file in asp net?

You can use application resource files (. resx) to efficiently create a localizable Microsoft ASP.NET Web application. By using resource files, you can store localized values for controls. The localized values are based on a user's language and culture.


1 Answers

I guess it depends on what your app is doing with them.

If you're pushing .resx files into the App_LocalResources folder of your website, they will be Just-In-Time compiled automatically as soon as you do that. So in this case you wouldn't have to recompile anything.

like image 93
womp Avatar answered Oct 18 '22 08:10

womp