diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-10-18 22:37:12 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-10-24 20:17:06 -0500 |
| commit | c9d14eb51e4b8458fd5e2738fcc7d1c1129ad22e (patch) | |
| tree | 4d0d29316adce60e5a568806b478fc3e4d88d134 /src/WixToolset.Mba.Core/BootstrapperApplication.cs | |
| parent | dcf13e60f0b165a8942e7e7d98f5f0702f7d1e84 (diff) | |
| download | wix-c9d14eb51e4b8458fd5e2738fcc7d1c1129ad22e.tar.gz wix-c9d14eb51e4b8458fd5e2738fcc7d1c1129ad22e.tar.bz2 wix-c9d14eb51e4b8458fd5e2738fcc7d1c1129ad22e.zip | |
WIXFEAT:6210 Change data type of versions to strings.
Diffstat (limited to 'src/WixToolset.Mba.Core/BootstrapperApplication.cs')
| -rw-r--r-- | src/WixToolset.Mba.Core/BootstrapperApplication.cs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/WixToolset.Mba.Core/BootstrapperApplication.cs index 9ee909dc..472c553a 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplication.cs | |||
| @@ -1130,9 +1130,9 @@ namespace WixToolset.Mba.Core | |||
| 1130 | return args.HResult; | 1130 | return args.HResult; |
| 1131 | } | 1131 | } |
| 1132 | 1132 | ||
| 1133 | int IBootstrapperApplication.OnDetectForwardCompatibleBundle(string wzBundleId, RelationType relationType, string wzBundleTag, bool fPerMachine, long version, ref bool fCancel, ref bool fIgnoreBundle) | 1133 | int IBootstrapperApplication.OnDetectForwardCompatibleBundle(string wzBundleId, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, ref bool fCancel, ref bool fIgnoreBundle) |
| 1134 | { | 1134 | { |
| 1135 | DetectForwardCompatibleBundleEventArgs args = new DetectForwardCompatibleBundleEventArgs(wzBundleId, relationType, wzBundleTag, fPerMachine, version, fCancel, fIgnoreBundle); | 1135 | DetectForwardCompatibleBundleEventArgs args = new DetectForwardCompatibleBundleEventArgs(wzBundleId, relationType, wzBundleTag, fPerMachine, wzVersion, fCancel, fIgnoreBundle); |
| 1136 | this.OnDetectForwardCompatibleBundle(args); | 1136 | this.OnDetectForwardCompatibleBundle(args); |
| 1137 | 1137 | ||
| 1138 | fCancel = args.Cancel; | 1138 | fCancel = args.Cancel; |
| @@ -1150,9 +1150,9 @@ namespace WixToolset.Mba.Core | |||
| 1150 | return args.HResult; | 1150 | return args.HResult; |
| 1151 | } | 1151 | } |
| 1152 | 1152 | ||
| 1153 | int IBootstrapperApplication.OnDetectUpdate(string wzUpdateLocation, long dw64Size, long dw64Version, string wzTitle, string wzSummary, string wzContentType, string wzContent, ref bool fCancel, ref bool fStopProcessingUpdates) | 1153 | int IBootstrapperApplication.OnDetectUpdate(string wzUpdateLocation, long dw64Size, string wzVersion, string wzTitle, string wzSummary, string wzContentType, string wzContent, ref bool fCancel, ref bool fStopProcessingUpdates) |
| 1154 | { | 1154 | { |
| 1155 | DetectUpdateEventArgs args = new DetectUpdateEventArgs(wzUpdateLocation, dw64Size, dw64Version, wzTitle, wzSummary, wzContentType, wzContent, fCancel, fStopProcessingUpdates); | 1155 | DetectUpdateEventArgs args = new DetectUpdateEventArgs(wzUpdateLocation, dw64Size, wzVersion, wzTitle, wzSummary, wzContentType, wzContent, fCancel, fStopProcessingUpdates); |
| 1156 | this.OnDetectUpdate(args); | 1156 | this.OnDetectUpdate(args); |
| 1157 | 1157 | ||
| 1158 | fCancel = args.Cancel; | 1158 | fCancel = args.Cancel; |
| @@ -1169,9 +1169,9 @@ namespace WixToolset.Mba.Core | |||
| 1169 | return args.HResult; | 1169 | return args.HResult; |
| 1170 | } | 1170 | } |
| 1171 | 1171 | ||
| 1172 | int IBootstrapperApplication.OnDetectRelatedBundle(string wzProductCode, RelationType relationType, string wzBundleTag, bool fPerMachine, long version, RelatedOperation operation, ref bool fCancel) | 1172 | int IBootstrapperApplication.OnDetectRelatedBundle(string wzProductCode, RelationType relationType, string wzBundleTag, bool fPerMachine, string wzVersion, RelatedOperation operation, ref bool fCancel) |
| 1173 | { | 1173 | { |
| 1174 | DetectRelatedBundleEventArgs args = new DetectRelatedBundleEventArgs(wzProductCode, relationType, wzBundleTag, fPerMachine, version, operation, fCancel); | 1174 | DetectRelatedBundleEventArgs args = new DetectRelatedBundleEventArgs(wzProductCode, relationType, wzBundleTag, fPerMachine, wzVersion, operation, fCancel); |
| 1175 | this.OnDetectRelatedBundle(args); | 1175 | this.OnDetectRelatedBundle(args); |
| 1176 | 1176 | ||
| 1177 | fCancel = args.Cancel; | 1177 | fCancel = args.Cancel; |
| @@ -1187,18 +1187,18 @@ namespace WixToolset.Mba.Core | |||
| 1187 | return args.HResult; | 1187 | return args.HResult; |
| 1188 | } | 1188 | } |
| 1189 | 1189 | ||
| 1190 | int IBootstrapperApplication.OnDetectCompatibleMsiPackage(string wzPackageId, string wzCompatiblePackageId, long dw64CompatiblePackageVersion, ref bool fCancel) | 1190 | int IBootstrapperApplication.OnDetectCompatibleMsiPackage(string wzPackageId, string wzCompatiblePackageId, string wzCompatiblePackageVersion, ref bool fCancel) |
| 1191 | { | 1191 | { |
| 1192 | DetectCompatibleMsiPackageEventArgs args = new DetectCompatibleMsiPackageEventArgs(wzPackageId, wzCompatiblePackageId, dw64CompatiblePackageVersion, fCancel); | 1192 | DetectCompatibleMsiPackageEventArgs args = new DetectCompatibleMsiPackageEventArgs(wzPackageId, wzCompatiblePackageId, wzCompatiblePackageVersion, fCancel); |
| 1193 | this.OnDetectCompatibleMsiPackage(args); | 1193 | this.OnDetectCompatibleMsiPackage(args); |
| 1194 | 1194 | ||
| 1195 | fCancel = args.Cancel; | 1195 | fCancel = args.Cancel; |
| 1196 | return args.HResult; | 1196 | return args.HResult; |
| 1197 | } | 1197 | } |
| 1198 | 1198 | ||
| 1199 | int IBootstrapperApplication.OnDetectRelatedMsiPackage(string wzPackageId, string wzUpgradeCode, string wzProductCode, bool fPerMachine, long version, RelatedOperation operation, ref bool fCancel) | 1199 | int IBootstrapperApplication.OnDetectRelatedMsiPackage(string wzPackageId, string wzUpgradeCode, string wzProductCode, bool fPerMachine, string wzVersion, RelatedOperation operation, ref bool fCancel) |
| 1200 | { | 1200 | { |
| 1201 | DetectRelatedMsiPackageEventArgs args = new DetectRelatedMsiPackageEventArgs(wzPackageId, wzUpgradeCode, wzProductCode, fPerMachine, version, operation, fCancel); | 1201 | DetectRelatedMsiPackageEventArgs args = new DetectRelatedMsiPackageEventArgs(wzPackageId, wzUpgradeCode, wzProductCode, fPerMachine, wzVersion, operation, fCancel); |
| 1202 | this.OnDetectRelatedMsiPackage(args); | 1202 | this.OnDetectRelatedMsiPackage(args); |
| 1203 | 1203 | ||
| 1204 | fCancel = args.Cancel; | 1204 | fCancel = args.Cancel; |
| @@ -1268,9 +1268,9 @@ namespace WixToolset.Mba.Core | |||
| 1268 | return args.HResult; | 1268 | return args.HResult; |
| 1269 | } | 1269 | } |
| 1270 | 1270 | ||
| 1271 | int IBootstrapperApplication.OnPlanCompatibleMsiPackageBegin(string wzPackageId, string wzCompatiblePackageId, long dw64CompatiblePackageVersion, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) | 1271 | int IBootstrapperApplication.OnPlanCompatibleMsiPackageBegin(string wzPackageId, string wzCompatiblePackageId, string wzCompatiblePackageVersion, RequestState recommendedState, ref RequestState pRequestedState, ref bool fCancel) |
| 1272 | { | 1272 | { |
| 1273 | PlanCompatibleMsiPackageBeginEventArgs args = new PlanCompatibleMsiPackageBeginEventArgs(wzPackageId, wzCompatiblePackageId, dw64CompatiblePackageVersion, recommendedState, pRequestedState, fCancel); | 1273 | PlanCompatibleMsiPackageBeginEventArgs args = new PlanCompatibleMsiPackageBeginEventArgs(wzPackageId, wzCompatiblePackageId, wzCompatiblePackageVersion, recommendedState, pRequestedState, fCancel); |
| 1274 | this.OnPlanCompatibleMsiPackageBegin(args); | 1274 | this.OnPlanCompatibleMsiPackageBegin(args); |
| 1275 | 1275 | ||
| 1276 | pRequestedState = args.State; | 1276 | pRequestedState = args.State; |
