2022-12-14 09:53:10 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-12-30 14:36:36 +03:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-12-14 09:53:10 +03:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<UserSecretsId>1c307973-55cf-4d5c-a4f8-1def6b58ee3c</UserSecretsId>
|
2024-01-14 23:03:52 +03:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
2022-12-14 09:53:10 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-07 16:32:34 +03:00
|
|
|
|
<PackageReference Include="ClosedXML" Version="0.102.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1">
|
2022-12-14 09:53:10 +03:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-07 16:32:34 +03:00
|
|
|
|
<PackageReference Include="Microsoft.ML" Version="3.0.1" />
|
2023-12-30 14:36:36 +03:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
|
2022-12-14 09:53:10 +03:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
|
2024-01-14 15:06:29 +03:00
|
|
|
|
<PackageReference Include="Rhsolutions.ProductSku" Version="1.0.2" />
|
2024-01-14 16:03:42 +03:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
2024-02-07 16:32:34 +03:00
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" />
|
2022-12-14 09:53:10 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-09-19 14:56:55 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="MLModels\model.zip">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-01-26 15:50:41 +03:00
|
|
|
|
<ItemGroup>
|
2024-02-08 17:11:11 +03:00
|
|
|
|
<ProjectReference Include="..\RhSolutions.Parsers\RhSolutions.Parsers.csproj" />
|
2024-01-26 15:50:41 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-12-14 09:53:10 +03:00
|
|
|
|
</Project>
|