* Start building with orlean * Add missing file * Serialize grain state * Remove grain and proxies * update and add plan * Update a bit * Fix backtest grain * Fix backtest grain * Clean a bit
22 lines
770 B
XML
22 lines
770 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Exilion.TradingAtomics" Version="1.0.4"/>
|
|
<PackageReference Include="Microsoft.Orleans.Core.Abstractions" Version="9.2.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
|
|
<PackageReference Include="Skender.Stock.Indicators" Version="2.5.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Managing.Common\Managing.Common.csproj"/>
|
|
<ProjectReference Include="..\Managing.Core\Managing.Core.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|