95dd48018a
10.3.36 fixes JWT refresh for idle sessions and registers EditModalSaveContextHolder via AddBlazorBlocksWeb() — making the manual stopgap in DeepDrftManager/Program.cs redundant. BlazorBlocks direct refs (10.3.30) resolved without conflict; left unchanged.
35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" />
|
|
<!-- EF Core / Npgsql kept in sync with DeepDrftData / DeepDrftManager so the same DbContext registration compiles. -->
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.7" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" />
|
|
<!-- AuthBlocks API host surface: AddAuthBlocks / MapAuthBlocks / UseAuthBlocksStartupAsync.
|
|
The Manager keeps only Cerebellum.AuthBlocks.Web (web-side auth, no signing secret). -->
|
|
<PackageReference Include="Cerebellum.AuthBlocks" Version="10.3.36" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Exposes the internal 409 markers (CardinalityViolationMarker / DuplicateReleaseMarker) to the
|
|
test suite so UploadDuplicateDetectionTests can assert the orchestrator's rejection contract. -->
|
|
<InternalsVisibleTo Include="DeepDrftTests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DeepDrftModels\DeepDrftModels.csproj" />
|
|
<ProjectReference Include="..\DeepDrftContent\DeepDrftContent.csproj" />
|
|
<ProjectReference Include="..\DeepDrftData\DeepDrftData.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|