c# - How to Combine WIX Setup Project with WIX Bootstrapper Project -
I have a WIX setup project that includes my custom UI and a WIX bootstrap project, in which the pre-exite Includes prerequisite / dependency MSI of my projects I want to combine them to create a single exe If I refer to my WIX setup project in Bootstrap project then it does not display my WIX UI Ia though it is able to successfully establish my setup MSI and prerequisites.
& lt; Bundle name = "bootstrapper 1" version = "1.0.0.0" manufacturer = "Microsoft" upgrade code = "4056d930-16b2-44eb-a861-16db566ae44c" & gt; & Lt; BootstrapperApplicationRef ID = "WixStandardBootstrapperApplication.RtfLicense" /> & Lt; Chain & gt; & Lt; PackageGroupRef id = "Y" /> & Lt; MsiPackage SourceFile = "$ (var.BiodentifySetUp.TargetPath)" compressed = "yes" /> & Lt; / Chain & gt; & Lt; / Bundle & gt; & Lt; Piece & gt; & Lt; Package Group ID = "Y" & gt; & Lt; ExePackage Id = "Y" DisplayName = "Software is already installed" DownloadUrl = "http://download.microsoft.com/download/5/6/2/562A10F9-C9F4-4313-A044-9C94E0A8FAC8/dotNetFx40_Client_x86_x64 .exe "compressed =" no "cache =" yes "paramachine =" yes "permanent =" yes "significant =" yes "sourcefile =". \ Y.msi "install command =" / idle / nortstart "/> & Lt; / PackageGroup & gt; & Lt; / Piece & gt; How can I merge them to create an exe?
What do I want you to install all dependencies and your own MSI and show your MSI UI To use a single MSI, when it comes time to install your MMS package and if I am not wrong then you just want to display DisplayInternalUI = 'yes' MsiPackage for elements. For example:
& lt; Chain & gt; ... & lt; MsiPackage ... DisplayInternalUI = 'Yes' / & gt; & Lt; / Chain & gt; And if it is not so, you want a bootstrapper UI, but there is not a bootstrap app in your MSI UI that will silently install your dependencies and show your MSI UI.
Please clearly explain your requirement for better reactions.
Comments
Post a Comment