-
I would like to a merge a merge module of x64 to a msi module of ARM64.
It seems that when the MergeEx function called, the error type of msmErrorPlatformMismatch was returned. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The exact error message is probably a little dated but I think it's pointing in the right direction. When a Merge Module declares its supported platform, the merge tooling will not merge it into a mismatched platform. In this case, the error message should probably say |
Beta Was this translation helpful? Give feedback.
The exact error message is probably a little dated but I think it's pointing in the right direction. When a Merge Module declares its supported platform, the merge tooling will not merge it into a mismatched platform. In this case, the error message should probably say
The MSM is x64 but the product is ARM64. x64 merge modules can only be merged into x64 products.
It's possible that Microsoft needs to update the Merge API to add ARM64 into its support matrix.