mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
56 lines
2.8 KiB
XML
56 lines
2.8 KiB
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
|
|
xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
|
|
|
|
<?define ProductName="Feed Center" ?>
|
|
<?define CompanyName="Chris Kaczor" ?>
|
|
<?define ProductVersion="!(bind.packageVersion.FeedCenter)" ?>
|
|
<?define FileDescription="" ?>
|
|
|
|
<Bundle Name="$(var.ProductName)"
|
|
Version="$(var.ProductVersion)"
|
|
Manufacturer="$(var.CompanyName)"
|
|
UpgradeCode="5e5c13a5-635e-4310-a653-0f9760f46935"
|
|
Compressed="no">
|
|
|
|
<BootstrapperApplication Id="WixExtendedBootstrapperApplication.HyperlinkLicense">
|
|
<!--<bal:WixStandardBootstrapperApplication LaunchPassive="yes" LaunchQuiet="yes" />-->
|
|
<bal:WixStandardBootstrapperApplication LicenseUrl=""
|
|
SuppressOptionsUI="yes"
|
|
ShowVersion="yes"
|
|
LaunchTarget="[LocalAppDataFolder]$(var.ProductName)\FeedCenter.exe"
|
|
Theme="hyperlinkLargeLicense" />
|
|
</BootstrapperApplication>
|
|
|
|
<Chain>
|
|
<ExePackage Id="runtime_desktop_x64"
|
|
DisplayName=".NET 7.0 Desktop Runtime (x64)"
|
|
InstallArguments="/install /quiet"
|
|
Permanent="yes"
|
|
InstallCondition='VersionNT64'>
|
|
<ArpEntry Id="runtime_desktop_x64_arp"
|
|
Version="7.0.5.32327"
|
|
Win64="yes" />
|
|
<ExePackagePayload Hash="8907aa0e934a31c63f0a840bf9e734c2f5ba109b766c1a775f8adbb169049753664790c0a15b216f02a942392819a3500e4a33918df10fb967341dc167f82d11"
|
|
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/dffb1939-cef1-4db3-a579-5475a3061cdd/578b208733c914c7b7357f6baa4ecfd6/windowsdesktop-runtime-7.0.5-win-x64.exe"
|
|
Name="windowsdesktop-runtime-7.0.5-win-x64.exe"
|
|
Size="57609944" />
|
|
</ExePackage>
|
|
<ExePackage Id="runtime_desktop_x32"
|
|
DisplayName=".NET 7.0 Desktop Runtime (x86)"
|
|
InstallArguments="/install /quiet"
|
|
Permanent="yes"
|
|
InstallCondition='NOT VersionNT64'>
|
|
<ArpEntry Id="runtime_desktop_x64_arp"
|
|
Version="7.0.5.32327"
|
|
Win64="no" />
|
|
<ExePackagePayload Hash="a2f776cfabcfbd4b9278198301d289ed1c56febd47259520c50b8b8d130a79d0ea99c857aec96865cc635ddf078fd575368c030ce11d61bb9991d296df87a4a7"
|
|
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/eb64dcd1-d277-4798-ada1-600805c9e2dc/fc73c843d66f3996e7ef22468f4902e6/windowsdesktop-runtime-7.0.5-win-x86.exe"
|
|
Name="windowsdesktop-runtime-7.0.5-win-x86.exe"
|
|
Size="52816632" />
|
|
</ExePackage>
|
|
<MsiPackage Id="FeedCenter"
|
|
SourceFile="$(var.Setup.TargetPath)"
|
|
Compressed="yes" />
|
|
</Chain>
|
|
</Bundle>
|
|
</Wix> |