Files
QuanTAlib/Tests/Tests.csproj
T

36 lines
1.5 KiB
XML
Raw Normal View History

2022-05-30 19:26:24 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-04-02 16:03:20 -07:00
<TargetFrameworks>net6.0</TargetFrameworks>
2022-05-30 19:26:24 -07:00
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
2022-04-24 16:53:16 -07:00
<ItemGroup>
<PackageReference Include="Python.Included" Version="3.11.2" />
<PackageReference Include="pythonnet" Version="3.1.0-preview2023-03-04" />
2022-11-12 19:00:38 -08:00
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0-preview-20230223-05" />
2022-05-30 19:26:24 -07:00
<PackageReference Include="TALib.NETCore" Version="0.4.4" />
<PackageReference Include="Skender.Stock.Indicators" Version="3.0.0-preview1014-0015" />
2022-11-26 22:04:26 -08:00
<PackageReference Include="Tulip.NETCore" Version="0.8.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.0-preview.2.23128.3" />
2022-05-30 19:26:24 -07:00
</ItemGroup>
2022-04-23 20:10:30 -07:00
<ItemGroup>
<ProjectReference Include="..\Calculations\Calculations.csproj" />
2022-05-30 19:26:24 -07:00
</ItemGroup>
2022-11-13 19:58:53 -08:00
<ItemGroup>
<None Remove="Python.Included" />
<None Remove="pythonnet" />
2022-11-26 22:04:26 -08:00
<None Remove="Tulip.NETCore" />
<None Remove="System.Text.Json" />
2022-11-13 19:58:53 -08:00
</ItemGroup>
2022-05-30 19:26:24 -07:00
</Project>