WiX: package up the experimental dynamic SDK and the runtime redistributables #456
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces experimental shared and static runtime installer modules for Windows, with supporting build logic and packaging for multiple architectures. The changes add new WiX project files, update build properties, and integrate these new runtimes into the Windows installer and merge module pipelines.
Experimental Runtime Packaging and Build Integration
Added new WiX project and source files for experimental shared runtime (
rtl.shared.lib.wixproj
,rtl.shared.lib.wxs
), merge module (rtl.shared.msm.wixproj
,rtl.shared.msm.wxs
), and MSI installer (rtl.shared.msi.wixproj
,rtl.shared.msi.wxs
), as well as for the static runtime merge module (rtl.static.msm.wixproj
,rtl.static.msm.wxs
). These include component definitions for distributing Swift runtime DLLs and utilities for x86, x64, and ARM64 architectures. [1] [2] [3] [4] [5] [6] [7] [8]Updated
Directory.Build.props
andSideBySideUpgradeStrategy.props
to add new constants and upgrade codes for the experimental runtimes, enabling them to be referenced and versioned appropriately in the build and installer processes. [1] [2] [3]Installer and Build Pipeline Updates
Modified
Directory.Build.targets
to generalize project reference logic and exclude the new runtime modules from unnecessary references, improving build maintainability and reducing redundant dependencies.Integrated the new shared and static runtime merge modules into the main Windows installer (
installer.wixproj
) and platform-specific installer projects (windows.wixproj
), ensuring these experimental runtimes are included for all supported architectures. [1] [2]