22 lines
563 B
XML
22 lines
563 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="DTO\ChartDataPointDto.cs" />
|
|
<Compile Remove="DTO\ChartSeriesDto.cs" />
|
|
<Compile Remove="DTO\FermiCommentatiDTO.cs" />
|
|
<Compile Remove="DTO\userTknDTO.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="StackExchange.Redis" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|