mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
16 lines
673 B
XML
Executable File
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> |