Skip to content

Commit a0f502e

Browse files
committed
Address review
1 parent 7c996e5 commit a0f502e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

project/Build.scala

+7-6
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)