Include all Files in Bin folder in Wix installer
This solution works with WIX 3.11. To harvest an entire directory, you can use Heat from the WIX toolset. With Heat we can automatically include all files from a given source directory on every build. To do that we first need to edit the Setup.wixproj: Define the Harvestpath for Heat: <PropertyGroup> <DefineConstants>HarvestPath=…\Deploy</DefineConstants> </PropertyGroup> Heat will … Read more