aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/registration.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2026-02-20 19:18:23 -0500
committerBob Arnson <bob@firegiant.com>2026-02-20 19:18:23 -0500
commit8f3c366e9671dc5d4931dd3de28a42a1f1be32a5 (patch)
treeb9f270a14fe73dc07667cf37ea0232662e7d858b /src/burn/engine/registration.cpp
parent96222b03ccc510027cb4d506fb424961cc351e03 (diff)
downloadwix-bob/WixStdBaConfigurableScope.tar.gz
wix-bob/WixStdBaConfigurableScope.tar.bz2
wix-bob/WixStdBaConfigurableScope.zip
Configurable-scope bundles for WixStdBA.bob/WixStdBaConfigurableScope
Fixes https://github.com/wixtoolset/issues/issues/9234 Fixes https://github.com/wixtoolset/issues/issues/9235
Diffstat (limited to 'src/burn/engine/registration.cpp')
-rw-r--r--src/burn/engine/registration.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/burn/engine/registration.cpp b/src/burn/engine/registration.cpp
index 7c9ca182..e7a9b95f 100644
--- a/src/burn/engine/registration.cpp
+++ b/src/burn/engine/registration.cpp
@@ -441,6 +441,9 @@ extern "C" HRESULT RegistrationSetVariables(
441 hr = VariableSetVersion(pVariables, BURN_BUNDLE_VERSION, pRegistration->pVersion, TRUE); 441 hr = VariableSetVersion(pVariables, BURN_BUNDLE_VERSION, pRegistration->pVersion, TRUE);
442 ExitOnFailure(hr, "Failed to overwrite the bundle version built-in variable."); 442 ExitOnFailure(hr, "Failed to overwrite the bundle version built-in variable.");
443 443
444 hr = VariableSetNumeric(pVariables, BURN_BUNDLE_AUTHORED_SCOPE, pRegistration->scope, TRUE);
445 ExitOnFailure(hr, "Failed to set the bundle authored scope built-in variable.");
446
444LExit: 447LExit:
445 ReleaseStr(scz); 448 ReleaseStr(scz);
446 449