Skip to content
This repository was archived by the owner on Feb 20, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1167266
Initial commit of WiX installer for Redis
NickMRamirez Jan 9, 2015
9bc6c6e
Added WiX binaries to source control so that dev doesn't have to inst…
NickMRamirez Jan 9, 2015
437a9c3
Added a 64-bit Windows installer
NickMRamirez Jan 9, 2015
733dd88
Added WiX binaries to source control for 64-bit Windows Installer so …
NickMRamirez Jan 9, 2015
d5119c4
Added firewall exception for Redis service
NickMRamirez Jan 12, 2015
87835eb
Adding missing WiX compiler and linker .exe files that were ignored b…
NickMRamirez Jan 12, 2015
c998816
Updated path to WixFirewallExentsion.dll
NickMRamirez Jan 12, 2015
c5db422
Removed CONFIG WiX property from install command-line instructions. I…
NickMRamirez Jan 12, 2015
7e68545
Removing x86 WiX installer
NickMRamirez Feb 27, 2015
a4d2df1
Removed WiX compiler binaries. We'll be relying on the developer to h…
NickMRamirez Feb 27, 2015
a38bbe7
Added a UI to the WiX installer. Also, added license text and branded…
NickMRamirez Feb 27, 2015
8e4dcd5
Added a dialog to the installer that lets the user customize the port…
NickMRamirez Feb 28, 2015
454a4a9
Updated Word doc to include information about how the Windows service…
NickMRamirez Feb 28, 2015
23fdac7
Added redis.service.conf that turns on logging to the Windows event v…
NickMRamirez Mar 9, 2015
9a8aade
Fix msi build
orangemocha Mar 30, 2015
d835f24
MSI fixes & tweaks
orangemocha Apr 3, 2015
28735c1
Add full license text for Wix UI components
orangemocha May 4, 2015
21f69fd
msi: added/renamed configuration files
orangemocha May 4, 2015
7b336b1
Updated license in source tree and MSI
orangemocha May 4, 2015
4a9a87b
Updated MSI version number to 2.8.19.1
orangemocha May 4, 2015
e28dbb5
Move MSI to a separate solution
orangemocha May 4, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated path to WixFirewallExentsion.dll
  • Loading branch information
NickMRamirez authored and orangemocha committed May 4, 2015
commit c998816b65ccf3e9444ac86ea06f3ad948ff486d
2 changes: 1 addition & 1 deletion msvs/RedisWindowsX64/RedisWindowsX64.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</ItemGroup>
<ItemGroup>
<WixExtension Include="WixFirewallExtension">
<HintPath>..\..\..\..\..\..\Program Files (x86)\WiX Toolset v3.9\bin\WixFirewallExtension.dll</HintPath>
<HintPath>$(WixToolPath)WixFirewallExtension.dll</HintPath>
<Name>WixFirewallExtension</Name>
</WixExtension>
<WixExtension Include="WixUtilExtension">
Expand Down
2 changes: 1 addition & 1 deletion msvs/RedisWindowsX86/RedisWindowsX86.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</ItemGroup>
<ItemGroup>
<WixExtension Include="WixFirewallExtension">
<HintPath>..\..\..\..\..\..\Program Files (x86)\WiX Toolset v3.9\bin\WixFirewallExtension.dll</HintPath>
<HintPath>$(WixToolPath)WixFirewallExtension.dll</HintPath>
<Name>WixFirewallExtension</Name>
</WixExtension>
<WixExtension Include="WixUtilExtension">
Expand Down