Wix 3.11 Currently making an installer for an applcation.
I have a text file (comma separating values) that I want to read and to change UI dynamically during the UI sequence of the installer. The file constantly changes.
The file doesn't exist in the target client machine, and if the file is registered as a Component, it still is not in the target machine because the file deployment occurs during install sequence after the UI sequence.
I expect three solutions for the situation.
- A. an independent text file separate from msi file.
- B. making properties from the text file csv, (If I can harvest wxs file by using Heat or other tools)
- C. using CustomAction(C# library), reading the file by StreamReader. (I don't know how to define the file path in such situation.)
Any ideas?