blob: eafaaa4ac4a1a401d3534d702e8080612b7fc760 [file] [log] [blame]
<?xml version="1.0" encoding="utf-16"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="BeforeBuild">
<CreateProperty Value="VERSION=$(VERSION);INSTALLER_NAME=$(INSTALLER_NAME);$(DefineConstants)">
<Output TaskParameter="Value" PropertyName="DefineConstants"/>
</CreateProperty>
</Target>
<PropertyGroup>
<DefineConstants>VERSION=$(version);ItemDir=..\..\$(installer_name)\</DefineConstants>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform>x64</Platform>
<ProductVersion>3.10</ProductVersion>
<ProjectGuid>efe20296-776e-4417-9980-0c4b8adfb8c3</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>$(installer_name)</OutputName>
<OutputType>Package</OutputType>
</PropertyGroup>
<PropertyGroup>
<DefineSolutionProperties>false</DefineSolutionProperties>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DefineConstants>Debug</DefineConstants>
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Product.wxs" />
<Compile Include="RenodeUI.wxs" />
</ItemGroup>
<ItemGroup>
<HarvestDirectory Include="..\..\$(installer_name)\">
<DirectoryRefId>INSTALLDIR</DirectoryRefId>
<ComponentGroupName>Items</ComponentGroupName>
<PreprocessorVariable>var.ItemDir</PreprocessorVariable>
<SuppressRootDirectory>true</SuppressRootDirectory>
<SuppressRegistry>true</SuppressRegistry>
</HarvestDirectory>
</ItemGroup>
<ItemGroup>
<WixExtension Include="WixUIExtension">
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
<Name>WixUIExtension</Name>
</WixExtension>
</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>