diff options
author | 2019-03-09 04:51:39 +0100 | |
---|---|---|
committer | 2019-03-09 07:45:41 +0100 | |
commit | 277cc5816c04df32fb55b71adda75c7a8934373a (patch) | |
tree | b936f19f3b8f6c5241daa854618ab30179cdf575 /installer/installer.wixproj | |
parent | ui: ensure window comes up on top (diff) | |
download | wireguard-windows-277cc5816c04df32fb55b71adda75c7a8934373a.tar.xz wireguard-windows-277cc5816c04df32fb55b71adda75c7a8934373a.zip |
installer: add basic wix skeleton
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'installer/installer.wixproj')
-rw-r--r-- | installer/installer.wixproj | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/installer/installer.wixproj b/installer/installer.wixproj new file mode 100644 index 00000000..3c0409ab --- /dev/null +++ b/installer/installer.wixproj @@ -0,0 +1,49 @@ +<?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 |