2015-11-17 08:39:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
2017-04-26 21:43:12 +00:00
|
|
|
<?include "Variables.wxi" ?>
|
|
|
|
<Product Id="*" Name="$(var.ProductName)" Language="$(var.ProductLanguage)" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
|
|
|
<Package Compressed="yes" InstallScope="perMachine" InstallerVersion="200" />
|
2016-01-13 23:24:09 +00:00
|
|
|
|
2017-04-26 21:43:12 +00:00
|
|
|
<MajorUpgrade DowngradeErrorMessage="$(var.DowngradeErrorMessage)" Schedule="afterInstallInitialize"/>
|
2016-01-13 23:24:09 +00:00
|
|
|
|
2017-04-26 21:43:12 +00:00
|
|
|
<MediaTemplate CabinetTemplate="dnet-{0}.cab" CompressionLevel="high" />
|
2016-01-27 07:54:59 +00:00
|
|
|
|
2017-04-26 21:43:12 +00:00
|
|
|
<Feature Id="MainFeature" Title="Main Feature" Level="1">
|
|
|
|
<ComponentGroupRef Id="InstallFiles" />
|
|
|
|
<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">
|
|
|
|
<ComponentRef Id="$(var.DependencyKeyId)" />
|
|
|
|
</Feature>
|
|
|
|
<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)" />
|
|
|
|
<Property Id="MSIFASTINSTALL" Value="7" />
|
2017-07-27 06:10:48 +00:00
|
|
|
<Property Id="NUGETVERSION" Value="$(var.NugetVersion)" />
|
2017-04-26 21:43:12 +00:00
|
|
|
<WixVariable Id="WixUILicenseRtf" Value="$(var.MicrosoftEula)" />
|
2016-01-27 08:02:46 +00:00
|
|
|
|
2017-04-26 21:43:12 +00:00
|
|
|
<Property Id="DOTNETEXE">
|
|
|
|
<DirectorySearch Id="DOTNETPATH" Path="[#DOTNETHOME]">
|
|
|
|
<FileSearch Id="DOTNETEXESEARCH" Name="dotnet.exe" />
|
|
|
|
</DirectorySearch>
|
|
|
|
</Property>
|
2015-11-18 04:32:02 +00:00
|
|
|
|
2017-04-26 21:43:12 +00:00
|
|
|
<CustomActionRef Id="WixBroadcastEnvironmentChange" />
|
2017-04-24 22:42:52 +00:00
|
|
|
|
2017-06-27 20:46:09 +00:00
|
|
|
<CustomAction Id="PropertyAssignPrimeCacheAndTelemetry"
|
|
|
|
Property="QtExecPrimeCacheAndTelemetryTarget"
|
2017-07-27 06:10:48 +00:00
|
|
|
Value=""[DOTNETHOME]\dotnet.exe" exec "[DOTNETHOME]\sdk\[NUGETVERSION]\dotnet.dll" internal-reportinstallsuccess "[EXEFULLPATH]""
|
2017-06-27 20:46:09 +00:00
|
|
|
Execute="immediate" />
|
|
|
|
<CustomAction Id="QtExecPrimeCacheAndTelemetryTarget"
|
|
|
|
BinaryKey="WixCA"
|
|
|
|
DllEntry="$(var.WixQuietExec)"
|
|
|
|
Execute="deferred"
|
|
|
|
Return="ignore"
|
|
|
|
Impersonate="no"/>
|
2017-04-26 21:43:12 +00:00
|
|
|
|
|
|
|
<InstallExecuteSequence>
|
2017-06-27 20:46:09 +00:00
|
|
|
<Custom Action="PropertyAssignPrimeCacheAndTelemetry" Before="QtExecPrimeCacheAndTelemetryTarget" />
|
|
|
|
<Custom Action="QtExecPrimeCacheAndTelemetryTarget" Before="InstallFinalize" />
|
2017-04-26 21:43:12 +00:00
|
|
|
</InstallExecuteSequence>
|
|
|
|
</Product>
|
|
|
|
<Fragment>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
|
|
<Directory Id="$(var.Program_Files)">
|
|
|
|
<Directory Id="DOTNETHOME" Name="dotnet"/>
|
|
|
|
</Directory>
|
|
|
|
</Directory>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|