mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-09 14:30:56 +00:00
13d7c1215d
- Removed unnecessary blank lines in multiple test files to enhance readability. - Ensured consistent spacing and formatting in the `Trima`, `Usf`, `Vidya`, `Wma`, and `Atr` test classes. - Updated comments for clarity and consistency in the `Atr` and `Adl` classes. - Adjusted project files for better structure and maintainability.
26 lines
861 B
XML
26 lines
861 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\lib\quantalib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Comparison libraries -->
|
|
<PackageReference Include="OoplesFinance.StockIndicators" Version="1.1.1" />
|
|
<PackageReference Include="Skender.Stock.Indicators" Version="2.6.1" />
|
|
<PackageReference Include="Tulip.NETCore" Version="0.8.0.1" />
|
|
<PackageReference Include="TALib.NETCore" Version="0.5.0" />
|
|
|
|
<!-- Benchmarking -->
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
|
|
</ItemGroup>
|
|
</Project>
|