-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
176 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||
<ProductVersion>3.9</ProductVersion> | ||
<ProjectGuid>feeaa91e-2a74-4b9a-b272-d1670069b4cc</ProjectGuid> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<OutputName>RedisExplorerInstaller</OutputName> | ||
<OutputType>Package</OutputType> | ||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\WiX Toolset\v4\Wix.targets</WixTargetsPath> | ||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\WiX Toolset\v4\Wix.targets</WixTargetsPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | ||
<OutputPath>bin\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||
<DefineConstants>Debug</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | ||
<OutputPath>bin\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\RedisExplorer\RedisExplorer.csproj"> | ||
<Name>RedisExplorer</Name> | ||
<Project>{40c37d45-2ddb-482f-a893-4748b92d8d3f}</Project> | ||
<Private>True</Private> | ||
<DoNotHarvest>True</DoNotHarvest> | ||
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups> | ||
<RefTargetDir>INSTALLFOLDER</RefTargetDir> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="RedisExplorerInstaller.wxs" /> | ||
</ItemGroup> | ||
<Import Project="$(WixTargetsPath)" /> | ||
<!-- | ||
To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Wix.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
|
||
<Product Id="*" Name="Redis Explorer" Language="1033" Version="1.0.0.0" Manufacturer="Redis Explorer" UpgradeCode="A8BE4DB2-6A11-4CCC-96AE-657D7C1E0187"> | ||
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> | ||
|
||
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | ||
<Media Id="1" Cabinet="redisexplorer.cab" EmbedCab="yes" /> | ||
|
||
<Feature Id="ProductFeature" Title="Redis Explorer" Level="1"> | ||
<ComponentGroupRef Id="ProductComponents" /> | ||
<ComponentRef Id="ProgramMenuDir"/> | ||
</Feature> | ||
|
||
<Icon Id="icon.ico" SourceFile="..\RedisExplorer\Assets\redis-icon.png"/> | ||
<Property Id="ARPPRODUCTICON" Value="icon.ico" /> | ||
</Product> | ||
|
||
<Fragment> | ||
<Directory Id="TARGETDIR" Name="SourceDir"> | ||
<Directory Id="ProgramFilesFolder"> | ||
<Directory Id="INSTALLFOLDER" Name="RedisExplorer" /> | ||
</Directory> | ||
<Directory Id="ProgramMenuFolder"> | ||
<Directory Id="ApplicationProgramsFolder" Name="Redis Explorer"> | ||
|
||
<Component Id="ProgramMenuDir" Guid="{A118046E-FEC6-46A4-A4CB-39FEC6D1823D}"> | ||
<RemoveFolder Id="ProgramMenuDir" On="uninstall"/> | ||
<RegistryValue Root="HKCU" Key="Software\[Manufacturer]\Installer" Type="integer" Value="1" Name="installed" KeyPath="yes" /> | ||
</Component> | ||
|
||
</Directory> | ||
</Directory> | ||
</Directory> | ||
</Fragment> | ||
|
||
<!--<Fragment> | ||
<Component Id="executable" Guid="{7B30C885-B7F8-4BA0-9B16-8BD596D1E21F}" Directory="INSTALLFOLDER"> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\RedisExplorer.exe" KeyPath="yes" Checksum="yes"> | ||
<Shortcut Id="startMenuShotcut" Directory="ApplicationProgramsFolder" | ||
Name="Redis Explorer" WorkingDirectory="INSTALLFOLDER" | ||
Icon="icon.ico" IconIndex="0" Advertise="yes"> | ||
</Shortcut> | ||
</File> | ||
</Component> | ||
</Fragment>--> | ||
|
||
<Fragment> | ||
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
|
||
<Component Id="executable" Guid="{7B30C885-B7F8-4BA0-9B16-8BD596D1E21F}" Directory="INSTALLFOLDER"> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\RedisExplorer.exe" KeyPath="yes" Checksum="yes"> | ||
|
||
<Shortcut Id="startMenuShotcut" Directory="ApplicationProgramsFolder" | ||
Name="Redis Explorer" WorkingDirectory="INSTALLFOLDER" | ||
Icon="icon.ico" IconIndex="0" Advertise="yes"> | ||
</Shortcut> | ||
|
||
</File> | ||
</Component> | ||
|
||
<Component Id="ProductComponent" Guid="{1C791AE4-C2F6-4B6C-ACE5-54ADF2970073}"> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\RedisExplorer.exe.config"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\StackExchange.Redis.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Caliburn.Micro.Platform.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Caliburn.Micro.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Newtonsoft.Json.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\MahApps.Metro.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.AvalonDock.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\System.Windows.Interactivity.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.AvalonDock.Themes.Aero.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.AvalonDock.Themes.Metro.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.AvalonDock.Themes.VS2010.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.DataGrid.dll"/> | ||
<File Id="" Source="..\RedisExplorer\bin\Release\Xceed.Wpf.Toolkit.dll"/> | ||
</Component> | ||
|
||
</ComponentGroup> | ||
</Fragment> | ||
|
||
<!--<Fragment> | ||
<ComponentGroup Id="ShortcutComponents" Directory="ApplicationProgramsFolder"> | ||
<Component Id="ApplicationShortcut" Guid="{E1573CDC-389F-4897-8767-AED445D17B07}"> | ||
<Shortcut Id="ApplicationStartMenuShortcut" | ||
Name="Redis Explorer" | ||
Description="A Desktop Redis Client" | ||
Target="[#executable]" | ||
WorkingDirectory="INSTALLFOLDER" /> | ||
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/> | ||
<RegistryValue Root="HKCU" Key="Software\Microsoft\RedisExplorer" Name="installed" Type="integer" Value="1" KeyPath="yes"/> | ||
</Component> | ||
</ComponentGroup> | ||
</Fragment>--> | ||
|
||
</Wix> |