mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-28 01:37:43 +00:00
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyName>quantower</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\**\*.cs"
|
|
Exclude="..\lib\**\*.Tests.cs;..\lib\**\*.Validation.Tests.cs;..\lib\**\*.Quantower.Tests.cs;..\lib\feeds\**\ValidationTestData.cs;..\lib\feeds\**\ValidationHelper.cs;..\lib\**\obj\**;..\lib\**\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)\quantower.dll" DestinationFolder="$(QuantowerRoot)\Settings\Scripts\Indicators\QuanTAlib\quantower" />
|
|
</Target>
|
|
|
|
</Project> |