2024-11-06 20:56:32 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>Experiments</AssemblyName>
|
|
|
|
|
<AlgoType>Indicator</AlgoType>
|
|
|
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-13 21:28:41 -05:00
|
|
|
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
|
2025-09-23 22:01:11 -07:00
|
|
|
<PackageReference Include="System.Text.Encodings.Web" Version="10.0.0-rc.1.25451.107" />
|
2024-11-06 20:56:32 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\*.cs" />
|
|
|
|
|
<Compile Include="*.cs" />
|
|
|
|
|
<Compile Include="..\..\lib\**\*.cs" Exclude="..\..\lib\bin\**;..\..\lib\obj\**" />
|
|
|
|
|
<Reference Include="TradingPlatform.BusinessLayer">
|
|
|
|
|
<HintPath>..\..\.github\TradingPlatform.BusinessLayer.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<None Include="..\..\.github\TradingPlatform.BusinessLayer.xml">
|
|
|
|
|
<Link>TradingPlatform.BusinessLayer.xml</Link>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-11-13 21:28:41 -05:00
|
|
|
<Target Name="CopyCustomContent" AfterTargets="AfterBuild" Condition="'$(IsLocalBuild)' == 'true' AND $([MSBuild]::IsOSPlatform('Windows'))">
|
2024-11-06 20:56:32 -08:00
|
|
|
<Copy SourceFiles="$(OutputPath)\Experiments.dll" DestinationFolder="$(QuantowerRoot)\Settings\Scripts\Indicators\QuanTAlib\Experiments" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|