2026-03-03 14:02:37 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\WorkClub.Domain\WorkClub.Domain.csproj" />
|
2026-03-03 14:32:21 +01:00
|
|
|
<ProjectReference Include="..\WorkClub.Application\WorkClub.Application.csproj" />
|
2026-03-03 14:02:37 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-03-03 18:52:35 +01:00
|
|
|
<PackageReference Include="Finbuckle.MultiTenant" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Finbuckle.MultiTenant.AspNetCore" Version="9.0.0" />
|
2026-03-03 14:32:21 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.3">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2026-03-03 14:02:37 +01:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2026-03-03 14:32:21 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-03-03 14:02:37 +01:00
|
|
|
</Project>
|