You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would be useful when working with custom WiX scripts - for example, when harvesting a directory using heat. Since heat generates a separate .wxs file, the only option to use it with the current packageBin implementation would be transforming it to an include file, which is incredibly ugly, and would require working around the copy logic.
Both candle and light support using multiple input files, so implementing this feature can be as simple as replacing wixFile: TaskKey[File] with wixFiles: TaskKey[Seq[File]], and updating packageBin implementation accordingly. If there's a need to preserve compatibility with the code that uses wixFile, we can keep wixFile and just do this:
wixFiles :=List(wixFile.value)
The text was updated successfully, but these errors were encountered:
* Implement building from multiple WiX sources
* Add a test for custom WiX sources in WindowsPlugin
* Fix code formatting
* Remove unnecessary overwrite flag
* Fix for SBT 0.13
This would be useful when working with custom WiX scripts - for example, when harvesting a directory using
heat
. Sinceheat
generates a separate.wxs
file, the only option to use it with the currentpackageBin
implementation would be transforming it to an include file, which is incredibly ugly, and would require working around the copy logic.Both
candle
andlight
support using multiple input files, so implementing this feature can be as simple as replacingwixFile: TaskKey[File]
withwixFiles: TaskKey[Seq[File]]
, and updatingpackageBin
implementation accordingly. If there's a need to preserve compatibility with the code that useswixFile
, we can keepwixFile
and just do this:The text was updated successfully, but these errors were encountered: