2024-06-16 13:27:00 +03:00
|
|
|
<Project Sdk="WixToolset.Sdk/5.0.0">
|
2014-10-31 09:05:52 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProductVersion>3.6</ProductVersion>
|
2016-11-08 17:38:51 +02:00
|
|
|
<OutputName>MtApi5Installer_$(Platform)</OutputName>
|
2017-09-08 17:07:53 +03:00
|
|
|
<RunWixToolsOutOfProc>true</RunWixToolsOutOfProc>
|
2014-10-31 09:05:52 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
2016-04-12 12:51:56 +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' ">
|
2016-04-12 12:51:56 +03:00
|
|
|
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
|
2014-10-31 09:05:52 +02:00
|
|
|
</PropertyGroup>
|
2016-04-12 12:51:56 +03:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
|
|
|
|
<DefineConstants>Debug</DefineConstants>
|
2016-11-08 17:38:51 +02:00
|
|
|
<OutputPath>..\build\installers\$(Configuration)</OutputPath>
|
2016-04-12 12:51:56 +03:00
|
|
|
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
2016-11-08 17:38:51 +02:00
|
|
|
<OutputPath>..\build\installers\$(Configuration)\</OutputPath>
|
2016-04-12 12:51:56 +03:00
|
|
|
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
|
|
|
|
</PropertyGroup>
|
2014-10-31 09:05:52 +02:00
|
|
|
<ItemGroup>
|
2024-06-16 13:27:00 +03:00
|
|
|
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0" />
|
2014-10-31 09:05:52 +02:00
|
|
|
</ItemGroup>
|
2016-04-12 12:51:56 +03:00
|
|
|
<ItemGroup>
|
2024-06-16 13:27:00 +03:00
|
|
|
<ProjectReference Include="..\MT5Connector\MT5Connector.vcxproj">
|
|
|
|
|
<Name>MT5Connector</Name>
|
|
|
|
|
<Project>{cb6d4a3e-2f2e-4c67-929d-3c2a8fd1c556}</Project>
|
|
|
|
|
<Private>True</Private>
|
|
|
|
|
<DoNotHarvest>True</DoNotHarvest>
|
|
|
|
|
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
|
|
|
|
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\MtApi5\MtApi5.csproj">
|
|
|
|
|
<Name>MtApi5</Name>
|
|
|
|
|
<Project>{ac8b5010-da75-477e-9ca5-547c649e12d8}</Project>
|
|
|
|
|
<Private>True</Private>
|
|
|
|
|
<DoNotHarvest>True</DoNotHarvest>
|
|
|
|
|
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
|
|
|
|
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
|
|
|
|
</ProjectReference>
|
2016-04-12 12:51:56 +03:00
|
|
|
</ItemGroup>
|
2014-10-31 09:05:52 +02:00
|
|
|
</Project>
|