aboutsummaryrefslogtreecommitdiff
path: root/src/setup
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-12-29 18:01:20 -0800
committerRob Mensching <rob@firegiant.com>2024-12-30 06:45:49 -0800
commit523c66a62a619e6aa9f30070173ea33edfb5e328 (patch)
tree04fa3146250b7eeaa6864b0f71e37905a2d77be1 /src/setup
parent6edc5d1e2a289eac50c6d59a29e195353bb023cb (diff)
downloadwix-523c66a62a619e6aa9f30070173ea33edfb5e328.tar.gz
wix-523c66a62a619e6aa9f30070173ea33edfb5e328.tar.bz2
wix-523c66a62a619e6aa9f30070173ea33edfb5e328.zip
Rename "bundle id" concept to "bundle code"
The "bundle id" always had more in common with the PackageCode from the Windows Installer. With the introduction of an actual Id attribute on the Bundle element, there is potential for confusion, so there is finally real motivation to rename "bundle id" to "bundle code".
Diffstat (limited to 'src/setup')
-rw-r--r--src/setup/MetadataTask/GenerateMetadata.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/MetadataTask/GenerateMetadata.cs b/src/setup/MetadataTask/GenerateMetadata.cs
index 645b7750..ddb645ad 100644
--- a/src/setup/MetadataTask/GenerateMetadata.cs
+++ b/src/setup/MetadataTask/GenerateMetadata.cs
@@ -76,7 +76,7 @@ namespace WixToolset.Tasks
76 Description = "Installation for " + bundleSymbol.Name, 76 Description = "Installation for " + bundleSymbol.Name,
77 License = "MS-RL", 77 License = "MS-RL",
78 SupportUrl = bundleSymbol.HelpUrl, 78 SupportUrl = bundleSymbol.HelpUrl,
79 BundleCode = bundleSymbol.BundleId, 79 BundleCode = bundleSymbol.BundleCode,
80 UpgradeCode = bundleSymbol.UpgradeCode, 80 UpgradeCode = bundleSymbol.UpgradeCode,
81 AboutUrl = bundleSymbol.AboutUrl, 81 AboutUrl = bundleSymbol.AboutUrl,
82 Architecture = PlatformToArchitecture(bundleSymbol.Platform), 82 Architecture = PlatformToArchitecture(bundleSymbol.Platform),