diff options
author | Rob Mensching <rob@firegiant.com> | 2024-12-29 18:01:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-12-30 06:45:49 -0800 |
commit | 523c66a62a619e6aa9f30070173ea33edfb5e328 (patch) | |
tree | 04fa3146250b7eeaa6864b0f71e37905a2d77be1 /src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs | |
parent | 6edc5d1e2a289eac50c6d59a29e195353bb023cb (diff) | |
download | wix-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/BootstrapperApplication.cs')
-rw-r--r-- | src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs index f9fca748..515a68b4 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/BootstrapperApplication.cs | |||
@@ -1449,9 +1449,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
1449 | return args.HResult; | 1449 | return args.HResult; |
1450 | } | 1450 | } |
1451 | 1451 | ||
1452 | int IBootstrapperApplication.OnDetectForwardCompatibleBundle(string wzBundleId, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, bool fMissingFromCache, ref bool fCancel) | 1452 | int IBootstrapperApplication.OnDetectForwardCompatibleBundle(string wzBundleCode, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, bool fMissingFromCache, ref bool fCancel) |
1453 | { | 1453 | { |
1454 | DetectForwardCompatibleBundleEventArgs args = new DetectForwardCompatibleBundleEventArgs(wzBundleId, relationType, wzBundleTag, fPerMachine, wzVersion, fMissingFromCache, fCancel); | 1454 | DetectForwardCompatibleBundleEventArgs args = new DetectForwardCompatibleBundleEventArgs(wzBundleCode, relationType, wzBundleTag, fPerMachine, wzVersion, fMissingFromCache, fCancel); |
1455 | this.OnDetectForwardCompatibleBundle(args); | 1455 | this.OnDetectForwardCompatibleBundle(args); |
1456 | 1456 | ||
1457 | fCancel = args.Cancel; | 1457 | fCancel = args.Cancel; |
@@ -1566,9 +1566,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
1566 | return args.HResult; | 1566 | return args.HResult; |
1567 | } | 1567 | } |
1568 | 1568 | ||
1569 | int IBootstrapperApplication.OnPlanRelatedBundle(string wzBundleId, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) | 1569 | int IBootstrapperApplication.OnPlanRelatedBundle(string wzBundleCode, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) |
1570 | { | 1570 | { |
1571 | PlanRelatedBundleEventArgs args = new PlanRelatedBundleEventArgs(wzBundleId, recommendedState, pRequestedState, fCancel); | 1571 | PlanRelatedBundleEventArgs args = new PlanRelatedBundleEventArgs(wzBundleCode, recommendedState, pRequestedState, fCancel); |
1572 | this.OnPlanRelatedBundle(args); | 1572 | this.OnPlanRelatedBundle(args); |
1573 | 1573 | ||
1574 | pRequestedState = args.State; | 1574 | pRequestedState = args.State; |
@@ -1576,9 +1576,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
1576 | return args.HResult; | 1576 | return args.HResult; |
1577 | } | 1577 | } |
1578 | 1578 | ||
1579 | int IBootstrapperApplication.OnPlanRelatedBundleType(string wzBundleId, RelatedBundlePlanType recommendedType, ref RelatedBundlePlanType pRequestedType, ref bool fCancel) | 1579 | int IBootstrapperApplication.OnPlanRelatedBundleType(string wzBundleCode, RelatedBundlePlanType recommendedType, ref RelatedBundlePlanType pRequestedType, ref bool fCancel) |
1580 | { | 1580 | { |
1581 | PlanRelatedBundleTypeEventArgs args = new PlanRelatedBundleTypeEventArgs(wzBundleId, recommendedType, pRequestedType, fCancel); | 1581 | PlanRelatedBundleTypeEventArgs args = new PlanRelatedBundleTypeEventArgs(wzBundleCode, recommendedType, pRequestedType, fCancel); |
1582 | this.OnPlanRelatedBundleType(args); | 1582 | this.OnPlanRelatedBundleType(args); |
1583 | 1583 | ||
1584 | pRequestedType = args.Type; | 1584 | pRequestedType = args.Type; |
@@ -2060,9 +2060,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
2060 | return args.HResult; | 2060 | return args.HResult; |
2061 | } | 2061 | } |
2062 | 2062 | ||
2063 | int IBootstrapperApplication.OnPlanForwardCompatibleBundle(string wzBundleId, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, bool fRecommendedIgnoreBundle, ref bool fCancel, ref bool fIgnoreBundle) | 2063 | int IBootstrapperApplication.OnPlanForwardCompatibleBundle(string wzBundleCode, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, bool fRecommendedIgnoreBundle, ref bool fCancel, ref bool fIgnoreBundle) |
2064 | { | 2064 | { |
2065 | PlanForwardCompatibleBundleEventArgs args = new PlanForwardCompatibleBundleEventArgs(wzBundleId, relationType, wzBundleTag, fPerMachine, wzVersion, fRecommendedIgnoreBundle, fCancel, fIgnoreBundle); | 2065 | PlanForwardCompatibleBundleEventArgs args = new PlanForwardCompatibleBundleEventArgs(wzBundleCode, relationType, wzBundleTag, fPerMachine, wzVersion, fRecommendedIgnoreBundle, fCancel, fIgnoreBundle); |
2066 | this.OnPlanForwardCompatibleBundle(args); | 2066 | this.OnPlanForwardCompatibleBundle(args); |
2067 | 2067 | ||
2068 | fCancel = args.Cancel; | 2068 | fCancel = args.Cancel; |
@@ -2122,9 +2122,9 @@ namespace WixToolset.BootstrapperApplicationApi | |||
2122 | return args.HResult; | 2122 | return args.HResult; |
2123 | } | 2123 | } |
2124 | 2124 | ||
2125 | int IBootstrapperApplication.OnPlanRestoreRelatedBundle(string wzBundleId, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) | 2125 | int IBootstrapperApplication.OnPlanRestoreRelatedBundle(string wzBundleCode, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) |
2126 | { | 2126 | { |
2127 | PlanRestoreRelatedBundleEventArgs args = new PlanRestoreRelatedBundleEventArgs(wzBundleId, recommendedState, pRequestedState, fCancel); | 2127 | PlanRestoreRelatedBundleEventArgs args = new PlanRestoreRelatedBundleEventArgs(wzBundleCode, recommendedState, pRequestedState, fCancel); |
2128 | this.OnPlanRestoreRelatedBundle(args); | 2128 | this.OnPlanRestoreRelatedBundle(args); |
2129 | 2129 | ||
2130 | pRequestedState = args.State; | 2130 | pRequestedState = args.State; |