2024-06-16 13:57:50 +03:00
|
|
|
<Project Sdk="WixToolset.Sdk/5.0.0">
|
2014-10-31 09:05:52 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProductVersion>3.6</ProductVersion>
|
2024-06-16 13:57:50 +03:00
|
|
|
<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>
|
2024-06-16 13:57:50 +03:00
|
|
|
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0" />
|
2014-10-31 09:05:52 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|