- Add AsNoTracking to tenant query to avoid tracking conflicts - Configure TenantInfo as owned entity in ApplicationUser - Map TenantInfo properties to separate columns in AspNetUsers table
26 lines
961 B
XML
26 lines
961 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
<PackageReference Include="OpenIddict.Abstractions" />
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" />
|
|
<PackageReference Include="OpenIddict.Server" />
|
|
<PackageReference Include="OpenIddict.Server.AspNetCore" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Fengling.AuthService\Fengling.AuthService.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|