Files

16 lines
673 B
XML
Raw Permalink Normal View History

<Project Sdk="WixToolset.Sdk/5.0.0">
2014-10-31 09:05:52 +02:00
<PropertyGroup>
<ProductVersion>3.6</ProductVersion>
<RunWixToolsOutOfProc>true</RunWixToolsOutOfProc>
2014-10-31 09:05:52 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2015-08-14 16:07:51 +03:00
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
2014-10-31 09:05:52 +02:00
<DefineConstants>Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
2015-08-14 16:07:51 +03:00
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
2014-10-31 09:05:52 +02:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0" />
2014-10-31 09:05:52 +02:00
</ItemGroup>
</Project>