@@ -2201,12 +2201,13 @@ object Build {
2201
2201
Windows / mappings := (Universal / mappings).value,
2202
2202
Windows / packageBin := (Windows / packageBin).dependsOn(republish).value,
2203
2203
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)
2210
2211
)
2211
2212
2212
2213
lazy val `dist-linux-x86_64` = project.in(file(" dist/linux-x86_64" )).asDist(Bootstrapped )
0 commit comments