Added support for CLI-less execution, Switched licenses to PDF in MSI, Bumped version to 3.0.0/3.0.0.0
Update Program.cs, ListComPort.wxs, and 4 more files...
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<!--
|
||||
See: https://wixtoolset.org/documentation/manual/v3/xsd/wix/product.html
|
||||
-->
|
||||
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="1.0.0.0"
|
||||
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="3.0.0.0"
|
||||
Manufacturer="$(var.ProductManufacturer)" UpgradeCode="$(var.ProductUpgradeCode)">
|
||||
|
||||
<!--
|
||||
@@ -83,12 +83,12 @@
|
||||
<File KeyPath="yes" Source="$(var.FilePathExecutable)" Name="lscom.exe" />
|
||||
</Component>
|
||||
<Component Id="Licenses" Guid="5aa34a6f-2b5c-4544-8979-a20d6c1d3f3c" Directory="LICENSESFOLDER" Feature="FeatureLicenses" Win64="$(var.Win64)">
|
||||
<File Source="Licenses\License_DotNetCore.rtf" Name="License_DotNetCore.rtf" />
|
||||
<File Source="Licenses\License_Microsoft_DotNet.rtf" Name="License_Microsoft_DotNet.rtf" />
|
||||
<File Source="Licenses\License_Microsoft_VisualStudio.rtf" Name="License_Microsoft_VisualStudio.rtf" />
|
||||
<File Source="Licenses\License_NibblePoker.rtf" Name="License_NibblePoker.rtf" />
|
||||
<File Source="Licenses\License_WindowsSDK.rtf" Name="License_WindowsSDK.rtf" />
|
||||
<File Source="Licenses\PrivacyNotice_Microsoft_2022-09.rtf" Name="PrivacyNotice_Microsoft_2022-09.rtf" />
|
||||
<File Source="Licenses\License_DotNetCore.pdf" Name="License_DotNetCore.pdf" />
|
||||
<File Source="Licenses\License_Microsoft_DotNet.pdf" Name="License_Microsoft_DotNet.pdf" />
|
||||
<File Source="Licenses\License_Microsoft_VisualStudio.pdf" Name="License_Microsoft_VisualStudio.pdf" />
|
||||
<File Source="Licenses\License_NibblePoker.pdf" Name="License_NibblePoker.pdf" />
|
||||
<File Source="Licenses\License_WindowsSDK.pdf" Name="License_WindowsSDK.pdf" />
|
||||
<File Source="Licenses\PrivacyNotice_Microsoft_2022-09.pdf" Name="PrivacyNotice_Microsoft_2022-09.pdf" />
|
||||
</Component>
|
||||
<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]" />
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
<Include>
|
||||
<!-- Shared variables -->
|
||||
<?define ProductManufacturer = "Herwin Bozet" ?>
|
||||
<?define PackageDescription = "Installer for "lscom.exe"." ?>
|
||||
<?define PackageComments = "Insert a comment here !" ?>
|
||||
<?define PackageDescription = "ListComPort / lscom" ?> <!-- Also reffered to as 'Subject' ! -->
|
||||
<?define PackageComments = "This installer database contains the logic and data required to install ListComPort." ?>
|
||||
|
||||
<!-- TODO: Add contact, support and help fields ! -->
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WixLocalization Culture="en-us" xmlns="http://schemas.microsoft.com/wix/2006/localization">
|
||||
<!--
|
||||
Custom string for the license agreement.
|
||||
-->
|
||||
<String Id="LicenseAgreementDlgLicenseAcceptedCheckBox">I accept the terms in these License Agreements and Privacy Statement</String>
|
||||
</WixLocalization>
|
||||
@@ -12,7 +12,7 @@ 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
|
||||
"C:\Program Files (x86)\WiX Toolset v3.14\bin\light.exe" "ListComPort_x64.wixobj" -loc en-us.wxl -out "ListComPort_x64.msi" -ext WixUIExtension -cultures:en-us
|
||||
|
||||
set WixTargetPlatform=x86
|
||||
|
||||
@@ -20,7 +20,7 @@ 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
|
||||
"C:\Program Files (x86)\WiX Toolset v3.14\bin\light.exe" "ListComPort_x86.wixobj" -loc en-us.wxl -out "ListComPort_x86.msi" -ext WixUIExtension -cultures:en-us
|
||||
|
||||
del *.wixobj
|
||||
del *.wixpdb
|
||||
|
||||
Reference in New Issue
Block a user