2025-07-06 19:15:24 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-08-01 15:17:27 +02:00
|
|
|
<ProjectReference Include="..\PresentPortal.ServiceDefaults\PresentPortal.ServiceDefaults.csproj" />
|
2025-07-06 19:15:24 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-08-01 15:48:20 +02:00
|
|
|
<PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
2025-08-01 15:17:27 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
|
2025-08-01 15:48:20 +02:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
2025-07-06 19:15:24 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|