Skip to content

Commit

Permalink
Allow installer to pickup version number from assembly.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyelton committed Apr 12, 2017
1 parent 319340f commit 0e55924
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ImageTransparencyTool.Installer.Bootstrapper/Bundle.wxs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="Image Transparency Tool" Version="1.0.0.0" Manufacturer="Kelly Elton" UpgradeCode="f5bbceb7-f733-4c49-a3e3-445d4a7dfc54" IconSourceFile="..\ImageTransparencyTool\Resources\Images\icon.ico">
<Bundle Name="Image Transparency Tool" Version="!(bind.packageVersion.msiImageTransparencyTool)" Manufacturer="Kelly Elton" UpgradeCode="f5bbceb7-f733-4c49-a3e3-445d4a7dfc54" IconSourceFile="..\ImageTransparencyTool\Resources\Images\icon.ico">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense" >
<bal:WixStandardBootstrapperApplication LicenseUrl="" SuppressOptionsUI="yes"/>
</BootstrapperApplicationRef>
<Chain>
<PackageGroupRef Id="NetFx461Web"/>
<RollbackBoundary />
<MsiPackage SourceFile="$(var.ImageTransparencyTool.Installer.TargetPath)"/>
<MsiPackage Id="msiImageTransparencyTool" SourceFile="$(var.ImageTransparencyTool.Installer.TargetPath)"/>
</Chain>
</Bundle>
</Wix>
2 changes: 1 addition & 1 deletion ImageTransparencyTool.Installer/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="Image Transparency Tool" Language="1033" Version="1.0.0.0" Manufacturer="Kelly Elton" UpgradeCode="7a2a476e-5e7d-4b4d-9d79-6092422aaace">
<Product Id="*" Name="Image Transparency Tool" Language="1033" Version="!(bind.fileVersion.ImageTransparencyTool.exe)" Manufacturer="Kelly Elton" UpgradeCode="7a2a476e-5e7d-4b4d-9d79-6092422aaace">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<Icon Id="icon.ico" SourceFile="..\ImageTransparencyTool\Resources\Images\icon.ico"/>
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
Expand Down

0 comments on commit 0e55924

Please sign in to comment.