aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer/installer.wixproj
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-04-24 14:52:16 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-04-24 15:39:20 +0200
commit47fdb25a01741146df6e1abfdb4c0fe8c51af7f6 (patch)
tree3f593d845cce3001b6e757f3f429f51bf32fadfe /installer/installer.wixproj
parentui: reduce icon overlay size (diff)
downloadwireguard-windows-47fdb25a01741146df6e1abfdb4c0fe8c51af7f6.tar.xz
wireguard-windows-47fdb25a01741146df6e1abfdb4c0fe8c51af7f6.zip
installer: redesign
- Switch from installer.wixproj to build.bat file eliminating MSBuild (Visual Studio) from the list of requirements and adding support for x86 packaging. - Reorganize .wxs in a bit more human-friendly way. Maybe. - Switch to Wintun MSMs - MSM files have to be manually injected in .deps folder until officially available. - Start menu shortcut implemented by the book. Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to '')
-rw-r--r--installer/installer.wixproj49
1 files changed, 0 insertions, 49 deletions
diff --git a/installer/installer.wixproj b/installer/installer.wixproj
deleted file mode 100644
index 3c0409ab..00000000
--- a/installer/installer.wixproj
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <ProductVersion>3.10</ProductVersion>
- <ProjectGuid>6ccfa606-8048-4502-86ea-e88027abfb15</ProjectGuid>
- <SchemaVersion>2.0</SchemaVersion>
- <OutputName>installer</OutputName>
- <OutputType>Package</OutputType>
- </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>
- <Compile Include="installer.wxs" />
- </ItemGroup>
- <ItemGroup>
- <WixExtension Include="WixDifxAppExtension">
- <HintPath>$(WixExtDir)\WixDifxAppExtension.dll</HintPath>
- <Name>WixDifxAppExtension</Name>
- </WixExtension>
- </ItemGroup>
- <ItemGroup>
- <WixLibrary Include="difxapp_x64">
- <HintPath>$(WixExtDir)\difxapp_x64.wixlib</HintPath>
- <Name>difxapp_x64</Name>
- </WixLibrary>
- </ItemGroup>
- <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
- <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
- <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
- </Target>
- <!--
- 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> \ No newline at end of file