mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-27 17:27:43 +00:00
1910fdca93
- Remove global.json (SDK pinning unnecessary) - Remove nuget.config, move MyGet source to .csproj RestoreAdditionalProjectSources - Gitignore ndepend/ entirely, move badges to docs/img/ - Update README.md and docs/ndepend.md badge paths - Add NDepend project property to QuanTAlib.slnx - Expand .editorconfig ReSharper/diagnostic suppressions - Use ArgumentOutOfRangeException instead of ArgumentException - Use discard _ for unused event sender parameters - Remove quantalib.code-workspace and sonar-suppressions.json - Add filter signature SVGs
51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<NoWarn>$(NoWarn);CS8892</NoWarn>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<RestoreAdditionalProjectSources>https://www.myget.org/F/ooplesfinance_stockindicators/api/v3/index.json</RestoreAdditionalProjectSources>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
|
<PackageReference Include="FsCheck.Xunit" Version="3.3.2" />
|
|
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
|
|
<PackageReference Include="OoplesFinance.StockIndicators" Version="1.1.1" />
|
|
<PackageReference Include="Skender.Stock.Indicators" Version="2.7.0" />
|
|
<PackageReference Include="TALib.NETCore" Version="0.5.0" />
|
|
<PackageReference Include="Tulip.NETCore" Version="0.8.0.1" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
<Using Include="QuanTAlib" />
|
|
<Using Include="System.Collections" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="quantalib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.Tests.cs" Exclude="**\*.Quantower.Tests.cs" />
|
|
<Compile Include="feeds\gbm\ValidationHelper.cs" />
|
|
<Compile Include="feeds\gbm\ValidationTestData.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="feeds\csvfeed\daily_IBM.csv">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Link>daily_IBM.csv</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|