2015-11-17 00:39:46 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
2015-11-17 20:32:02 -08:00
|
|
|
<?include "Variables.wxi" ?>
|
|
|
|
<Product Id="*" Name="$(var.ProductName)" Language="$(var.ProductLanguage)" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
2016-01-22 13:53:39 -08:00
|
|
|
<Package Compressed="yes" InstallScope="perMachine" InstallerVersion="200" />
|
2016-01-13 15:24:09 -08:00
|
|
|
|
|
|
|
<MajorUpgrade DowngradeErrorMessage="$(var.DowngradeErrorMessage)" Schedule="afterInstallInitialize"/>
|
|
|
|
|
2016-01-28 01:46:03 -08:00
|
|
|
<MediaTemplate CabinetTemplate="dnet-{0}.cab" CompressionLevel="high" />
|
2016-01-26 23:54:59 -08:00
|
|
|
|
2015-11-17 20:32:02 -08:00
|
|
|
<Feature Id="MainFeature" Title="Main Feature" Level="1">
|
2015-11-17 00:39:46 -08:00
|
|
|
<ComponentGroupRef Id="InstallFiles" />
|
2015-11-17 20:32:02 -08:00
|
|
|
<ComponentGroupRef Id="AuthoredRegistryKeys"/>
|
|
|
|
</Feature>
|
|
|
|
<Feature Id="Provider" Absent="disallow" AllowAdvertise="no" Description="Used for Ref Counting" Display="hidden" Level="1" InstallDefault="local" Title="RefCounting" TypicalDefault="install">
|
2016-04-29 16:52:20 -07:00
|
|
|
<ComponentRef Id="$(var.DependencyKeyId)" />
|
2015-11-17 00:39:46 -08:00
|
|
|
</Feature>
|
2015-11-17 20:32:02 -08:00
|
|
|
<Property Id="ProductFamily" Value="$(var.ProductFamily)" />
|
|
|
|
<Property Id="ProductEdition" Value="$(var.ProductEdition)" />
|
|
|
|
<Property Id="ProductCPU" Value="$(var.Platform)" />
|
|
|
|
<Property Id="RTM_ProductVersion" Value="$(var.Dotnet_ProductVersion)" />
|
|
|
|
|
2016-01-27 00:02:46 -08:00
|
|
|
<Property Id="MSIFASTINSTALL" Value="7" />
|
|
|
|
|
2015-11-17 20:32:02 -08:00
|
|
|
<WixVariable Id="WixUILicenseRtf" Value="$(var.MicrosoftEula)" />
|
|
|
|
|
|
|
|
<Property Id="WIXUI_INSTALLDIR" Value="DOTNETHOME"/>
|
|
|
|
<UIRef Id="WixUI_InstallDir" />
|
2015-11-20 17:44:48 -08:00
|
|
|
|
|
|
|
<CustomActionRef Id="WixBroadcastEnvironmentChange" />
|
2015-11-17 00:39:46 -08:00
|
|
|
</Product>
|
2015-11-17 20:32:02 -08:00
|
|
|
<Fragment>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
2016-01-26 23:24:50 -08:00
|
|
|
<Directory Id="$(var.Program_Files)">
|
2015-11-20 17:44:48 -08:00
|
|
|
<Directory Id="DOTNETHOME" Name="dotnet"/>
|
2015-11-17 20:32:02 -08:00
|
|
|
</Directory>
|
|
|
|
</Directory>
|
|
|
|
</Fragment>
|
2015-11-17 00:39:46 -08:00
|
|
|
</Wix>
|