Files
QuanTAlib/Tests/Tests.csproj
T

51 lines
1.9 KiB
XML
Raw Normal View History

2022-05-30 19:26:24 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
2022-04-23 20:10:30 -07:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;MSB3270</NoWarn>
2022-05-30 19:26:24 -07:00
</PropertyGroup>
2022-04-23 20:10:30 -07:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;MSB3270</NoWarn>
2022-05-30 19:26:24 -07:00
</PropertyGroup>
2022-04-23 20:10:30 -07:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NoWarn>1701;1702;MSB3270</NoWarn>
2022-05-30 19:26:24 -07:00
</PropertyGroup>
2022-04-23 20:10:30 -07:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NoWarn>1701;1702;MSB3270</NoWarn>
2022-05-30 19:26:24 -07:00
</PropertyGroup>
2022-04-24 16:53:16 -07:00
<ItemGroup>
2022-11-05 18:30:14 -07:00
<PackageReference Include="JetBrains.dotCover.CommandLineTools" Version="2022.3.0-eap07">
2022-05-30 19:26:24 -07:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2022-11-06 17:45:15 -08:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0-preview-20221003-04" />
2022-11-09 14:00:47 -08:00
<PackageReference Include="Python.Included" Version="3.10.0-preview5" />
2022-05-30 19:26:24 -07:00
<PackageReference Include="TALib.NETCore" Version="0.4.4" />
2022-11-05 18:30:14 -07:00
<PackageReference Include="Skender.Stock.Indicators" Version="2.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
2022-05-30 19:26:24 -07:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
2022-04-23 20:10:30 -07:00
<ItemGroup>
<ProjectReference Include="..\Source\QuanTAlib.csproj" />
2022-05-30 19:26:24 -07:00
</ItemGroup>
</Project>