2026-04-25 22:10:51 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>CS1591</NoWarn>
|
|
|
|
|
<RootNamespace>ControlCenter</RootNamespace>
|
|
|
|
|
<AssemblyName>ControlCenter</AssemblyName>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-04-26 11:44:17 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.7" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
2026-04-25 22:10:51 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|