Files
mtapi/MtApiInstaller/MtApiInstaller.wixproj
2024-06-16 13:57:50 +03:00

16 lines
673 B
XML
Executable File

<Project Sdk="WixToolset.Sdk/5.0.0">
<PropertyGroup>
<ProductVersion>3.6</ProductVersion>
<RunWixToolsOutOfProc>true</RunWixToolsOutOfProc>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
<DefineConstants>Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0" />
</ItemGroup>
</Project>