2013-11-13 01:32:12 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
2013-11-23 20:48:19 +00:00
<Product Id="257311fe-7c96-49df-8863-40930831d296" Name="NzbDrone" Language="1033" Version="$(env.BUILD_NUMBER)" Manufacturer="NzbDrone" UpgradeCode="56833D74-A480-4CA2-B562-5A018B3A0F99">
<Package Id="*"
Description="NzbDrone"
InstallerVersion="200"
Compressed="yes"
InstallPrivileges="elevated"
InstallScope="perUser"
Platform="x86"
Manufacturer="NzbDrone"
/>
<UIRef Id="WixUI_Minimal" />
<UIRef Id="WixUI_ErrorProgressText" />
2013-11-13 01:32:12 +00:00
<Media Id="1" Cabinet="nzbdrone.cab" EmbedCab="yes" CompressionLevel="high" />
2013-11-23 20:48:19 +00:00
<Property Id="ARPPRODUCTICON" Value="APP_ICON" />
2013-11-13 01:32:12 +00:00
<Directory Id="TARGETDIR" Name="SourceDir">
2013-11-23 20:48:19 +00:00
<Directory Id="CommonAppDataFolder" Name="ProgramData">
<Directory Id="ROOT_DIR" Name="NzbDrone">
<Directory Id="BIN_DIR" Name="bin">
<Component Id="BIN_COMP" DiskId="1" Guid="417fd784-e2f5-435d-92d1-220c140d0042">
<RemoveFolder Id="BIN_DIR" On="uninstall" />
</Component>
</Directory>
2013-11-13 01:32:12 +00:00
</Directory>
</Directory>
</Directory>
<MajorUpgrade AllowDowngrades="no" AllowSameVersionUpgrades="yes" MigrateFeatures="yes" Schedule="afterInstallValidate" DowngradeErrorMessage="Newer version of Nzbdrone is already installed." />
2013-11-23 20:48:19 +00:00
<Feature Id="Core" Title="NzbDrone Core" Description="NzbDrone Core" Level="1" Display='expand'>
<ComponentRef Id="BIN_COMP" />
2013-11-24 01:40:20 +00:00
<ComponentGroupRef Id="OUTPUT_GROUP" />
2013-11-13 01:32:12 +00:00
</Feature>
<PropertyRef Id="NETFRAMEWORK40FULL" />
2013-11-23 20:48:19 +00:00
<Property Id="INSTALL_WINDOWS_SERVICE" Value="1" />
2013-11-13 01:32:12 +00:00
<Condition Message="This application requires .NET Framework 4.0 or later. Please install the .NET Framework then run this installer again.">NETFRAMEWORK40FULL</Condition>
2013-11-23 20:48:19 +00:00
<Icon Id="APP_ICON" SourceFile="..\_output\NzbDrone.exe" />
2013-11-24 02:05:42 +00:00
<InstallExecuteSequence>
<InstallInitialize />
<!-- <Custom Action="START_ACTION" After="InstallFiles" /> -->
<InstallFinalize />
</InstallExecuteSequence>
<CustomAction Id="START_ACTION" FileKey="NzbDrone.Console.exe" ExeCommand="" Execute="deferred" Impersonate="no" Return="asyncNoWait" />
2013-11-13 01:32:12 +00:00
</Product>
</Wix>