- removed separate project for redis-check-aof - both tools are now a copy of redis-server.exe - running given tool calls proper action and causes the application to exit - updated installer Fixes #2
28 lines
945 B
XML
28 lines
945 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<?define RepoDir="$(var.ProjectDir)..\..\..\" ?>
|
|
<?define BinDir="$(var.RepoDir)msvs\$(var.Platform)\$(var.Configuration)\" ?>
|
|
|
|
<Fragment>
|
|
<!--Files to install, other than the main executable-->
|
|
<ComponentGroup Id="FileComponents" Directory="INSTALLFOLDER">
|
|
|
|
<Component Id="cmp_redis_benchmarkEXE" Guid="*">
|
|
<File Source="$(var.BinDir)redis-benchmark.exe" />
|
|
</Component>
|
|
|
|
<Component Id="cmp_redis_check_aofEXE" Guid="*">
|
|
<File Source="$(var.BinDir)redis-check-aof.exe" />
|
|
</Component>
|
|
|
|
<Component Id="cmp_redis_check_rdbEXE" Guid="*">
|
|
<File Source="$(var.BinDir)redis-check-rdb.exe" />
|
|
</Component>
|
|
|
|
<Component Id="cmp_redis_cliEXE" Guid="*">
|
|
<File Source="$(var.BinDir)redis-cli.exe" />
|
|
</Component>
|
|
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
</Wix> |