2026-02-01 17:48:16 -08:00
|
|
|
|
2026-01-18 19:02:03 -08:00
|
|
|
<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>
|
2026-03-03 09:22:55 -08:00
|
|
|
<RestoreAdditionalProjectSources>https://www.myget.org/F/ooplesfinance_stockindicators/api/v3/index.json</RestoreAdditionalProjectSources>
|
2026-01-18 19:02:03 -08:00
|
|
|
|
|
|
|
|
<!-- NativeAOT is NOT compatible with BenchmarkDotNet (uses reflection/Assembly.Location) -->
|
|
|
|
|
<!-- BenchmarkDotNet creates optimized JIT processes for benchmarking -->
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2026-03-13 22:01:31 -07:00
|
|
|
<!-- Exclude sibling progressive benchmark (belongs to progressive.csproj) -->
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Progressive.cs" />
|
|
|
|
|
<Compile Remove="obj\progressive\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-01-18 19:02:03 -08:00
|
|
|
<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 -->
|
2026-01-30 12:47:25 -08:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.3" />
|
2026-01-18 19:02:03 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|