Improved the Wix configuration file and other related resources
Update .gitignore, BannerSide.pdn, and 7 more files...
This commit is contained in:
@@ -16,5 +16,6 @@ NibblePoker.Packaging.ListComPort/*.wixpdb
|
|||||||
*.pbd
|
*.pbd
|
||||||
*.so
|
*.so
|
||||||
*.zip
|
*.zip
|
||||||
|
*.url
|
||||||
|
|
||||||
notes.txt
|
notes.txt
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 7.9 KiB |
+61
-15
@@ -1,21 +1,50 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<?include PlatformDependentVariables.wxi?>
|
|
||||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
||||||
<Product Id="*" Name="$(var.PlatformProductName)" Language="1033" Version="1.0.0.0" Manufacturer="WixEdit" UpgradeCode="$(var.PlatformUpgradeCode)">
|
|
||||||
<Package Description="Test file in a Product" Comments="Simple test" InstallerVersion="200" Compressed="yes" Platform="x64" />
|
|
||||||
|
|
||||||
|
<!-- Imports shared and platform-dependant variables -->
|
||||||
|
<?include Variables.wxi?>
|
||||||
|
|
||||||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||||
|
<!--
|
||||||
|
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/product.html
|
||||||
|
-->
|
||||||
|
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="1.0.0.0"
|
||||||
|
Manufacturer="$(var.ProductManufacturer)" UpgradeCode="$(var.ProductUpgradeCode)">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Package's properties as shown in Explorer, COM through the IStream interface and ???.
|
||||||
|
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/package.html
|
||||||
|
|
||||||
|
The "InstallerVersion" is changed from "200" to "500" since Windows Installer 5.0 and this software
|
||||||
|
both require at least Windows to run.
|
||||||
|
See: https://learn.microsoft.com/en-us/windows/win32/msi/released-versions-of-windows-installer
|
||||||
|
-->
|
||||||
|
<Package Description="$(var.PackageDescription)" Comments="$(var.PackageComments)"
|
||||||
|
InstallerVersion="500" Compressed="yes" Platform="$(var.PackagePlatform)" />
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Prevents downgrades.
|
||||||
|
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/majorupgrade.html
|
||||||
|
-->
|
||||||
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
||||||
|
|
||||||
<Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
|
<Media Id="1" Cabinet="lscom.cab" EmbedCab="yes" />
|
||||||
|
|
||||||
<Icon Id="Icon" SourceFile="..\lscom-v2-text-01.ico" />
|
<!--
|
||||||
|
Icon used for the entry in the control panel's "Programs and Features" section.
|
||||||
|
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/icon.html
|
||||||
|
-->
|
||||||
|
<Icon Id="IconMain" SourceFile="..\lscom-v2-text-01.ico" />
|
||||||
|
|
||||||
<Property Id="ARPPRODUCTICON" Value="Icon" />
|
<!--
|
||||||
<!--<Property Id="ARPNOREPAIR" Value="yes" Secure="yes" />
|
Binds the Icon "IconMain" to the aforementioned control panel's section
|
||||||
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" />-->
|
See:
|
||||||
|
* https://wixtoolset.org/documentation/manual/v3/xsd/wix/property.html
|
||||||
|
* https://learn.microsoft.com/en-us/windows/win32/msi/property-table?redirectedfrom=MSDN
|
||||||
|
-->
|
||||||
|
<Property Id="ARPPRODUCTICON" Value="IconMain" />
|
||||||
|
|
||||||
<WixVariable Id="WixUIBannerBmp" Value="WixUIBannerBmp.png" />
|
<WixVariable Id="WixUIBannerBmp" Value="WixUIBannerBmp.png" />
|
||||||
<WixVariable Id="WixUIDialogBmp" Value="WixUIDialogBmp_thin.png" />
|
<WixVariable Id="WixUIDialogBmp" Value="BannerSide.png" />
|
||||||
<WixVariable Id="WixUIExclamationIco" Value="WixUIExclamationIco.png" />
|
<WixVariable Id="WixUIExclamationIco" Value="WixUIExclamationIco.png" />
|
||||||
<WixVariable Id="WixUIInfoIco" Value="WixUIInfoIco.png" />
|
<WixVariable Id="WixUIInfoIco" Value="WixUIInfoIco.png" />
|
||||||
<WixVariable Id="WixUINewIco" Value="WixUINewIco.png" />
|
<WixVariable Id="WixUINewIco" Value="WixUINewIco.png" />
|
||||||
@@ -32,22 +61,37 @@
|
|||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<ComponentGroup Id="ProductComponentGroup">
|
<ComponentGroup Id="ProductComponentGroup">
|
||||||
<Component Id="Software" Guid="2b0b66d2-fc39-485b-baee-e5b0da8142a0" Directory="INSTALLFOLDER" Feature="DefaultFeature" Win64="$(var.Win64)">
|
<Component Id="Software" Guid="2b0b66d2-fc39-485b-baee-e5b0da8142a0" Directory="INSTALLFOLDER" Feature="FeatureExecutables" Win64="$(var.Win64)">
|
||||||
<File KeyPath="yes" Source="$(var.FilePathExecutable)" Name="lscom.exe" />
|
<File KeyPath="yes" Source="$(var.FilePathExecutable)" Name="lscom.exe" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="Licenses" Guid="5aa34a6f-2b5c-4544-8979-a20d6c1d3f3c" Directory="LICENSESFOLDER" Feature="DefaultFeature" Win64="$(var.Win64)">
|
<Component Id="Licenses" Guid="5aa34a6f-2b5c-4544-8979-a20d6c1d3f3c" Directory="LICENSESFOLDER" Feature="FeatureLicenses" Win64="$(var.Win64)">
|
||||||
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Application.ListComPort.txt" />
|
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Application.ListComPort.txt" />
|
||||||
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.Arguments.txt" />
|
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.Arguments.txt" />
|
||||||
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.ComPortHelpers.txt" />
|
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.ComPortHelpers.txt" />
|
||||||
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.RegistryHelpers.txt" />
|
<File Source="$(var.FilePathLicense)" Name="NibblePoker.Library.RegistryHelpers.txt" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="Registry" Guid="73b5468a-97b3-4469-a95d-70330ed229e6" Directory="INSTALLFOLDER" Feature="DefaultFeature" Win64="$(var.Win64)">
|
<Component Id="Registry" Guid="73b5468a-97b3-4469-a95d-70330ed229e6" Directory="INSTALLFOLDER" Feature="FeatureRegistryPath" Win64="$(var.Win64)">
|
||||||
<Environment Id="UpdatePath" Name="PATH" Part="last" Action="set" Permanent="yes" System="yes" Value="[INSTALLFOLDER]" />
|
<Environment Id="UpdatePath" Name="PATH" Part="last" Action="set" Permanent="yes" System="yes" Value="[INSTALLFOLDER]" />
|
||||||
<CreateFolder Directory="INSTALLFOLDER" />
|
<CreateFolder Directory="INSTALLFOLDER" />
|
||||||
</Component>
|
</Component>
|
||||||
</ComponentGroup>
|
</ComponentGroup>
|
||||||
|
|
||||||
<Feature Id="DefaultFeature" Title="Main Feature" Level="1" Absent="disallow"></Feature>
|
<!--
|
||||||
|
Declares some features shown in the "CustomizeDlg" to which components are bound by using the feature's ID.
|
||||||
|
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/feature.html
|
||||||
|
-->
|
||||||
|
<Feature Id="FeatureExecutables" Title="Executables"
|
||||||
|
Description="Installs "lscom.exe"."
|
||||||
|
Level="1" Absent="disallow">
|
||||||
|
</Feature>
|
||||||
|
<Feature Id="FeatureLicenses" Title="Licenses Files"
|
||||||
|
Description="Installs required licenses files in accordance to their terms of use."
|
||||||
|
Level="1" Absent="disallow">
|
||||||
|
</Feature>
|
||||||
|
<Feature Id="FeatureRegistryPath" Title="Add to PATH"
|
||||||
|
Description="Allows the program to be called from a terminal by adding the installation directory to the %PATH% environment variable."
|
||||||
|
Level="1" Absent="allow">
|
||||||
|
</Feature>
|
||||||
|
|
||||||
<UI Id="UserInterface">
|
<UI Id="UserInterface">
|
||||||
<Property Id="WIXUI_INSTALLDIR" Value="TARGETDIR" />
|
<Property Id="WIXUI_INSTALLDIR" Value="TARGETDIR" />
|
||||||
@@ -87,7 +131,9 @@
|
|||||||
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
|
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
|
||||||
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
|
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
|
||||||
|
|
||||||
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="EndDialog" Value="Return"></Publish>
|
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">NOT Installed OR WixUI_InstallMode = "Change"</Publish>
|
||||||
|
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish>
|
||||||
|
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="3">Installed AND PATCH</Publish>
|
||||||
</UI>
|
</UI>
|
||||||
<UIRef Id="WixUI_Common" />
|
<UIRef Id="WixUI_Common" />
|
||||||
</Product>
|
</Product>
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Include>
|
|
||||||
<?define Platform = "x64" ?>
|
|
||||||
<?if $(var.Platform) = x64 ?>
|
|
||||||
<?define Win64 = "yes" ?>
|
|
||||||
<?define PlatformProductName = "TestProject_02_x86_x64_Installer (x64)" ?>
|
|
||||||
<?define PlatformUpgradeCode = "1AB189BA-5B13-4448-A916-4E25B814D2AA" ?>
|
|
||||||
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
|
|
||||||
<?define FilePathExecutable = "..\Builds\x64_single_sc_trim_comp\NibblePoker.Application.ListComPort.exe" ?>
|
|
||||||
<?define FilePathLicense = "..\LICENSE" ?>
|
|
||||||
<?else ?>
|
|
||||||
<?define Win64 = "no" ?>
|
|
||||||
<?define PlatformProductName = "TestProject_02_x86_x64_Installer (x86)" ?>
|
|
||||||
<?define PlatformUpgradeCode = "1F633E9D-7F55-449D-8BC9-56F9E72342E8" ?>
|
|
||||||
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
|
|
||||||
<?define FilePathExecutable = "..\Builds\x86_single_sc_trim_comp\NibblePoker.Application.ListComPort.exe" ?>
|
|
||||||
<?define FilePathLicense = "..\LICENSE" ?>
|
|
||||||
<?endif ?>
|
|
||||||
</Include>
|
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Include>
|
||||||
|
<!-- Shared variables -->
|
||||||
|
<?define ProductManufacturer = "Herwin Bozet" ?>
|
||||||
|
<?define PackageDescription = "Installer for "lscom.exe"." ?>
|
||||||
|
<?define PackageComments = "Insert a comment here !" ?>
|
||||||
|
|
||||||
|
<!-- TODO: Add contact, support and help fields ! -->
|
||||||
|
|
||||||
|
<!-- Platform-dependant variables -->
|
||||||
|
<?if $(env.WixTargetPlatform) = x64 ?>
|
||||||
|
<?define Win64 = "yes" ?>
|
||||||
|
|
||||||
|
<?define ProductName = "ListComPort (x64)" ?>
|
||||||
|
<?define ProductUpgradeCode = "1AB189BA-5B13-4448-A916-4E25B814D2AA" ?>
|
||||||
|
|
||||||
|
<?define PackagePlatform = "x64" ?>
|
||||||
|
|
||||||
|
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
|
||||||
|
<?define FilePathExecutable = "..\Builds\x64_single_sc_trim_comp\NibblePoker.Application.ListComPort.exe" ?>
|
||||||
|
<?define FilePathLicense = "..\LICENSE" ?>
|
||||||
|
<?else ?>
|
||||||
|
<?define Win64 = "no" ?>
|
||||||
|
|
||||||
|
<?define ProductName = "ListComPort (x86)" ?>
|
||||||
|
<?define ProductUpgradeCode = "1F633E9D-7F55-449D-8BC9-56F9E72342E8" ?>
|
||||||
|
|
||||||
|
<?define PackagePlatform = "x86" ?>
|
||||||
|
|
||||||
|
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
|
||||||
|
<?define FilePathExecutable = "..\Builds\x86_single_sc_trim_comp\NibblePoker.Application.ListComPort.exe" ?>
|
||||||
|
<?define FilePathLicense = "..\LICENSE" ?>
|
||||||
|
<?endif ?>
|
||||||
|
</Include>
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 302 B |
@@ -1,9 +1,28 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
echo Executing "candle.exe"...
|
cd /D "%~dp0"
|
||||||
"C:\Program Files (x86)\WiX Toolset v3.11\bin\candle.exe" -nologo "D:\DevelopmentNew\DotNet\ComPortWatcher\NibblePoker.Packaging.ListComPort\untitled.wxs" -out "D:\DevelopmentNew\DotNet\ComPortWatcher\NibblePoker.Packaging.ListComPort\untitled.wixobj" -ext WixUIExtension
|
|
||||||
|
|
||||||
echo Executing "light.exe"...
|
del *.msi
|
||||||
"C:\Program Files (x86)\WiX Toolset v3.11\bin\light.exe" "untitled.wixobj" -out "untitled.msi" -ext WixUIExtension -cultures:en-us
|
del *.wixobj
|
||||||
|
del *.wixpdb
|
||||||
|
|
||||||
|
set WixTargetPlatform=x64
|
||||||
|
|
||||||
|
echo Executing "candle.exe" for x64...
|
||||||
|
"C:\Program Files (x86)\WiX Toolset v3.14\bin\candle.exe" -nologo "ListComPort.wxs" -out "ListComPort_x64.wixobj" -ext WixUIExtension
|
||||||
|
|
||||||
|
echo Executing "light.exe" for x64...
|
||||||
|
"C:\Program Files (x86)\WiX Toolset v3.14\bin\light.exe" "ListComPort_x64.wixobj" -out "ListComPort_x64.msi" -ext WixUIExtension -cultures:en-us
|
||||||
|
|
||||||
|
set WixTargetPlatform=x86
|
||||||
|
|
||||||
|
echo Executing "candle.exe" for x86...
|
||||||
|
"C:\Program Files (x86)\WiX Toolset v3.14\bin\candle.exe" -nologo "ListComPort.wxs" -out "ListComPort_x86.wixobj" -ext WixUIExtension
|
||||||
|
|
||||||
|
echo Executing "light.exe" for x86...
|
||||||
|
"C:\Program Files (x86)\WiX Toolset v3.14\bin\light.exe" "ListComPort_x86.wixobj" -out "ListComPort_x86.msi" -ext WixUIExtension -cultures:en-us
|
||||||
|
|
||||||
|
del *.wixobj
|
||||||
|
del *.wixpdb
|
||||||
|
|
||||||
pause
|
pause
|
||||||
|
|||||||
Reference in New Issue
Block a user