Configured the installer to display the program's icons, changed the banners on the install form and renamed the set up file's name. Very minor cleanup to the modify record's code.

This commit is contained in:
2017-04-11 23:22:44 -05:00
parent 973f72a523
commit 932ee01bf3
6 changed files with 226 additions and 12 deletions
+10 -4
View File
@@ -1,14 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="SetupProject" Language="1033" Version="1.0.0.0" Manufacturer="Garritt McCune" UpgradeCode="a416a558-d7c0-4f24-8b1e-2d01761ad15f">
<Product Id="*" Name="Advertising Profit Control" Language="1033" Version="0.1.0.0" Manufacturer="Garritt McCune" UpgradeCode="a416a558-d7c0-4f24-8b1e-2d01761ad15f">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<!--Not set by default, EmbedCab="yes" embeds the cabinet file into the installer-->
<MediaTemplate EmbedCab="yes"/>
<!--Set the program's icon-->
<Icon Id="icon.ico" SourceFile="$(var.SolutionDir)\AdvertsingProfitControl\Stretched Logo Collection.ico"/>
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
<!--Displays the installer so the user can choose what directory they'd like to install the product.-->
<!--There are no select features options with this install dialog.-->
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" />
<UIRef Id="WixUI_InstallDir" />
<WixVariable Id="WixUILicenseRtf" Value="License.rtf" />
<WixVariable Id="WixUIBannerBmp" Value="Banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="Dialog.bmp" />
<Feature Id="ProductFeature" Title="AdvertisingProfitControl" Level="1">
<ComponentGroupRef Id="ProductComponents" />
<ComponentRef Id="ApplicationShortcut" />
@@ -26,9 +32,9 @@
<Directory Id="ApplicationProgramsFolder" Name="Advertising Profit Control"/>
</Directory>
<!--App data folder-->
<Directory Id="LocalAppDataFolder">
<Directory Id="AppDataFolder" Name="APC" />
</Directory>
<!--<Directory Id="LocalAppDataFolder">
<Directory Id="LoggingFolder" Name="APC" />
</Directory> -->
</Directory>
</Fragment>
<!--Define the shortcut-->