Q:
You create English, French, and German versions of a test engine ASP.NET application you are developing for XYZ Inc. You have separate resource files for each language version.You need to deploy the appropriate resource file based on the language settings of the server. What should you do?
Answer & Explanation
Answer: C) Create an installer that has a custom action to install only location-specific files.
Explanation: Custom actions are a Windows Installer feature that allows you to run code at the end of an installation to perform actions that cannot be handled during installation. This is an appropriate solution for this scenario as we only want to deploy the resource files on the server.
Incorrect Answers:
A: We just want to deploy the resource files. We do not need to set the Context property in the application.
B: We don’t need any launch conditions. We just want to deploy the resource files.
D: We just want to deploy the resource files.
View Answer
Report Error
Discuss