I have a WiX install project that I am rewriting based on our previous installers from Wise. In Wise, you can add files for it to execute (ours used sql script files) and it had a replace tab that specified certain text in the file to be replaced with either with static text or a Wise property.
I am wondering if this is possible in WiX?
Example:
use [SQLDBNAME]
SELECT *
FROM Employee
Where WiX would read the file and replace the [SQLDBNAME]
with the value set in WiX's properties table?