i have the following requirement: i need to install some files just to some special intl version. how can i do this? Thanks.
HOW to select file according to intl setting
241 Views Asked by Dafan At
3
There are 3 best solutions below
0

If you are looking for installing files on specific environment you can go for DotNetInstaller. In that you can specify the condition to launch the setup for certain environments.
While if you want to deploy certain files for an environment then you can use CustomAction and check the requirements and on the basis of that you can install the files.
You can place a condition on the component. Take a look at the following link for potential properties to use. I suspect you'll be interested in the SystemLanguageID property. You might also want to set the Transitive flag con the components in case you think the user might ever chane their default language. Repairing the MSI after such a change would cause some of your files to be removed and others installed to sync up to the new condition evaluations.
Operating System Properties
SystemLanguageID Property
Using Transitive Components