Created
June 17, 2015 17:29
-
-
Save julesx/f917572d60e5ebfb9f7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" | |
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" | |
xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"> | |
<Bundle Name="Bootstrapper" Version="1.0.0.0" UpgradeCode="a5cbe250-7fd7-476c-9b44-9d73b92db6c9"> | |
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense"> | |
<bal:WixStandardBootstrapperApplication | |
LicenseUrl="" | |
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" /> | |
</BootstrapperApplicationRef> | |
<Chain> | |
<!-- TODO: Define the list of chained packages. --> | |
<PackageGroupRef Id="NetFx451Web"/> | |
<MsiPackage SourceFile="S:\test\Setup.msi" /> | |
<MsiPackage SourceFile="S:\test\SqlLocalDBx64.msi" DownloadUrl="http://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/LocalDB%2064BIT/SqlLocalDB.msi" InstallCondition="VersionNT64"> | |
<MsiProperty Name="IACCEPTSQLLOCALDBLICENSETERMS" Value="YES"/> | |
</MsiPackage> | |
<MsiPackage SourceFile="S:\test\SqlLocalDBx32.msi" DownloadUrl="http://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/LocalDB%2032BIT/SqlLocalDB.msi" InstallCondition="NOT VersionNT64"> | |
<MsiProperty Name="IACCEPTSQLLOCALDBLICENSETERMS" Value="YES"/> | |
</MsiPackage> | |
</Chain> | |
</Bundle> | |
</Wix> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment