aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs
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/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs
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/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs')
-rw-r--r--src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs
index 487858e0..44d77359 100644
--- a/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs
+++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/Engine.cs
@@ -209,12 +209,12 @@ namespace WixToolset.BootstrapperApplicationApi
209 } 209 }
210 210
211 /// <inheritdoc/> 211 /// <inheritdoc/>
212 public string GetRelatedBundleVariable(string bundleId, string name) 212 public string GetRelatedBundleVariable(string bundleCode, string name)
213 { 213 {
214 StrUtil.StrHandle handle = new StrUtil.StrHandle(); 214 StrUtil.StrHandle handle = new StrUtil.StrHandle();
215 try 215 try
216 { 216 {
217 int ret = BalUtil.BalGetRelatedBundleVariableFromEngine(this.engine, bundleId, name, ref handle); 217 int ret = BalUtil.BalGetRelatedBundleVariableFromEngine(this.engine, bundleCode, name, ref handle);
218 if (ret != NativeMethods.S_OK) 218 if (ret != NativeMethods.S_OK)
219 { 219 {
220 throw new Win32Exception(ret); 220 throw new Win32Exception(ret);