42 lines
2.2 KiB
XML
42 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MailKit" Version="4.11.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2"/>
|
|
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.3.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0-preview.2.25163.2" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="8.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="8.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Flawless.Abstract\Flawless.Abstract.csproj" />
|
|
<ProjectReference Include="..\Flawless.Communication\Flawless.Communication.csproj" />
|
|
<ProjectReference Include="..\Flawless.Core\Flawless.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Migrations\AppDbContextModelSnapshot.cs" />
|
|
<Compile Remove="Migrations\20250322195500_Update.cs" />
|
|
<Compile Remove="Migrations\20250322195500_Update.Designer.cs" />
|
|
<Compile Remove="Migrations\20250322194407_InitialCreate.Designer.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|