2024-05-11 15:26:47 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-05-20 04:48:27 +02:00
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
2024-05-11 15:26:47 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.4">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-05-19 17:20:45 +02:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="8.0.4" />
|
2024-05-11 15:26:47 +02:00
|
|
|
<PackageReference Include="Serilog" Version="3.1.1" />
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Foxchat.Core\Foxchat.Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|