Skip to content

Commit 709da65

Browse files
authored
Update Installer.wxs
1 parent 1a2866d commit 709da65

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Installer.wxs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
33
<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">
55
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
66

77
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
88
<MediaTemplate EmbedCab="yes" />
99

10+
<!--Default GUI - add reference to WixUIExtension.dll -->
1011
<UIRef Id="WixUI_Mondo" />
1112

1213
<Feature Id="Core" Title="Core" Level="1" ConfigurableDirectory="INSTALLFOLDER" />
@@ -15,9 +16,9 @@
1516
<Directory Id="ProgramFilesFolder">
1617
<Directory Id="INSTALLFOLDER" Name="PixelArtTool">
1718
<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" />
1920
20-
<!-- Start menu shortcut -->
21+
<!-- Start menu shortcut -->
2122
<Shortcut Id="StartMenuShortcut" Directory="ProgramMenuFolder" Name="PixelArtTool" Icon="IconFile.ico" Advertise="yes" />
2223
2324
<!-- Remove the shortcut on uninstall -->
@@ -29,10 +30,10 @@
2930
</Directory>
3031
3132
<Directory Id="ProgramMenuFolder" Name="Programs">
32-
<Directory Id="ApplicationProgramsFolder" Name="01_HelloWorldInstallerUpgradable" />
33+
<Directory Id="ApplicationProgramsFolder" Name="PixelArtTool" />
3334
</Directory>
3435
</Directory>
35-
36+
3637
<Icon Id="IconFile.ico" SourceFile="C:\projects\pixelarttool\Resources\Icons\appicon.ico" />
3738
3839
<InstallExecuteSequence>

0 commit comments

Comments
 (0)