Question

How can I to include all files from source folder and deploy them into a target folder during installation. I have multiple images in a folder and i want all of them to be included in msi automatically rather than including all of them separately using <File> element.

Was it helpful?

Solution

You need to Read about HEAT in the wix installer tutorial, http://wix.tramontana.co.hu/

"%WIX%\bin\heat.exe" dir "$(SolutionDir)bin\Release -out Release.wxs"

this is the type of pre-build event you will need to define in order to harvest a directory.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top