|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
3 | 3 | <Product Id="*" Name="PixelArtTool" Language="1033" Version="1.0.0.0"
|
4 |
| - Manufacturer="Someone" UpgradeCode="cb24bedf-e361-4f25-9a06-ac84ce5d6f5c"> |
| 4 | + Manufacturer="Someone" UpgradeCode="PUT-GUID-HERE"> |
5 | 5 | <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
|
6 | 6 |
|
7 | 7 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
8 | 8 | <MediaTemplate EmbedCab="yes" />
|
9 | 9 |
|
| 10 | + <!--Default GUI - add reference to WixUIExtension.dll --> |
10 | 11 | <UIRef Id="WixUI_Mondo" />
|
11 | 12 |
|
12 | 13 | <Feature Id="Core" Title="Core" Level="1" ConfigurableDirectory="INSTALLFOLDER" />
|
|
15 | 16 | <Directory Id="ProgramFilesFolder">
|
16 | 17 | <Directory Id="INSTALLFOLDER" Name="PixelArtTool">
|
17 | 18 | <Component Feature="Core">
|
18 |
| - <File Source="%APPVEYOR_BUILD_FOLDER%\PixelArtTool\bin\Release\PixelArtTool.exe" /> |
| 19 | + <File Source=""%APPVEYOR_BUILD_FOLDER%\PixelArtTool\bin\Release\PixelArtTool.exe" /> |
19 | 20 |
|
20 |
| - <!-- Start menu shortcut --> |
| 21 | + <!-- Start menu shortcut --> |
21 | 22 | <Shortcut Id="StartMenuShortcut" Directory="ProgramMenuFolder" Name="PixelArtTool" Icon="IconFile.ico" Advertise="yes" />
|
22 | 23 |
|
23 | 24 | <!-- Remove the shortcut on uninstall -->
|
|
29 | 30 | </Directory>
|
30 | 31 |
|
31 | 32 | <Directory Id="ProgramMenuFolder" Name="Programs">
|
32 |
| - <Directory Id="ApplicationProgramsFolder" Name="01_HelloWorldInstallerUpgradable" /> |
| 33 | + <Directory Id="ApplicationProgramsFolder" Name="PixelArtTool" /> |
33 | 34 | </Directory>
|
34 | 35 | </Directory>
|
35 |
| - |
| 36 | + |
36 | 37 | <Icon Id="IconFile.ico" SourceFile="C:\projects\pixelarttool\Resources\Icons\appicon.ico" />
|
37 | 38 |
|
38 | 39 | <InstallExecuteSequence>
|
|
0 commit comments