mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-28 09:47:43 +00:00
86fe32a682
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat> Co-authored-by: Warp <agent@warp.dev>
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyName>Filters</AssemblyName>
|
|
<AlgoType>Indicator</AlgoType>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<IsPackable>false</IsPackable>
|
|
<SonarQubeExclude>true</SonarQubeExclude>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="IndicatorExtensions.cs" />
|
|
<Compile Include="..\lib\core\**\*.cs" Exclude="..\lib\core\**\*.Tests.cs;..\lib\core\**\obj\**;..\lib\core\**\bin\**" />
|
|
<Compile Include="..\lib\filters\**\*.cs" Exclude="..\lib\filters\**\*.Tests.cs;..\lib\filters\**\obj\**;..\lib\filters\**\bin\**" />
|
|
<Reference Include="TradingPlatform.BusinessLayer">
|
|
<HintPath>..\.github\TradingPlatform.BusinessLayer.dll</HintPath>
|
|
</Reference>
|
|
<None Include="..\.github\TradingPlatform.BusinessLayer.xml">
|
|
<Link>TradingPlatform.BusinessLayer.xml</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyCustomContent" AfterTargets="AfterBuild" Condition="'$(IsLocalBuild)' == 'true' AND $([MSBuild]::IsOSPlatform('Windows'))">
|
|
<Copy SourceFiles="$(OutputPath)\Filters.dll" DestinationFolder="$(QuantowerRoot)\Settings\Scripts\Indicators\QuanTAlib\Filters" />
|
|
</Target>
|
|
|
|
</Project>
|