Posts

Showing posts with the label wix

How to read content of text file in Wix Toolset Bootstrapper

Image
How to read content of text file in Wix Toolset Bootstrapper I am using the WiX toolset to build an installer, I want to read the version from a text file. The text file is located in mybootstrapper like below: below is the code where i want to read the content of text file <Bundle IconSourceFile='product.ico' Name="Retail Grip" Version="Version.txt" <!-- i know this is not correct --> Manufacturer="Company Name" UpgradeCode="PUT-GUID-HERE"> Did you see: stackoverflow.com/questions/19241971/… – Stephu Jun 24 at 10:33 Where does this version.txt come from? Is it necessary independent of the goal of giving the bundle a version? – Tom Blodget Jun 24 at 13:15 ...