2024-09-30 06:46:07 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2024-10-12 20:36:37 -07:00
|
|
|
<AssemblyName>Volatility</AssemblyName>
|
2024-09-30 06:46:07 -07:00
|
|
|
<AlgoType>Indicator</AlgoType>
|
|
|
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
2024-10-11 18:02:09 -07:00
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
2024-09-30 06:46:07 -07:00
|
|
|
</PropertyGroup>
|
2024-11-03 10:47:10 -08:00
|
|
|
|
2024-09-30 06:46:07 -07:00
|
|
|
<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-09-30 06:46:07 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-10-11 18:02:09 -07:00
|
|
|
<Compile Include="..\*.cs" />
|
|
|
|
|
<Compile Include="*.cs" />
|
2024-10-12 20:36:37 -07:00
|
|
|
<Compile Include="..\..\lib\**\*.cs" Exclude="..\..\lib\bin\**;..\..\lib\obj\**" />
|
2024-09-30 06:46:07 -07:00
|
|
|
<Reference Include="TradingPlatform.BusinessLayer">
|
2024-10-11 18:02:09 -07:00
|
|
|
<HintPath>..\..\.github\TradingPlatform.BusinessLayer.dll</HintPath>
|
2024-09-30 06:46:07 -07:00
|
|
|
</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-10-11 18:02:09 -07:00
|
|
|
<Copy SourceFiles="$(OutputPath)\Volatility.dll" DestinationFolder="$(QuantowerRoot)\Settings\Scripts\Indicators\QuanTAlib\Volatility" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2025-09-23 22:01:11 -07:00
|
|
|
</Project>
|