@@ -2201,12 +2201,13 @@ object Build {
22012201 Windows / mappings := (Universal / mappings).value,
22022202 Windows / packageBin := (Windows / packageBin).dependsOn(republish).value,
22032203 Windows / wixFiles := (Windows / wixFiles).dependsOn(republish).value,
2204- maintainer := " The Scala Programming Language" ,
2205- packageSummary := s " Scala $dottyVersion" ,
2206- packageDescription := """ Installer for the Scala Programming Language""" ,
2207- wixProductId := " 74ED19C3-74FE-4ABA-AF30-55A06B6322A9" ,
2208- wixProductUpgradeId := " 3E5A1A82-CA67-4353-94FE-5BDD400AF66B" ,
2209- wixProductLicense := Some (dist.base / " LICENSE.rtf" )
2204+ // Additional information: https://wixtoolset.org/docs/schema/wxs/package/
2205+ maintainer := " The Scala Programming Language" , // The displayed maintainer of the package
2206+ packageSummary := s " Scala $dottyVersion" , // The displayed name of the package
2207+ packageDescription := """ Installer for the Scala Programming Language""" , // The displayed description of the package
2208+ wixProductId := " *" , // Unique ID for each generated MSI; will change for each generated msi
2209+ wixProductUpgradeId := " 3E5A1A82-CA67-4353-94FE-5BDD400AF66B" , // Unique ID to identify the package; used to manage the upgrades
2210+ wixProductLicense := Some (dist.base / " LICENSE.rtf" ) // Link to the LICENSE to show during the installation (keep in sync with ../LICENSE)
22102211 )
22112212
22122213 lazy val `dist-linux-x86_64` = project.in(file(" dist/linux-x86_64" )).asDist(Bootstrapped )
0 commit comments