194a76ce4c
Deploy DeepDrftAPI / Build, Publish & Bundle (push) Successful in 2m13s
Deploy DeepDrftManager / Build & Publish (push) Successful in 1m6s
Deploy DeepDrftPublic / Build & Publish (push) Successful in 3m23s
Deploy DeepDrftAPI / Deploy (push) Successful in 1m33s
Deploy DeepDrftManager / Deploy (push) Successful in 1m29s
Deploy DeepDrftPublic / Deploy (push) Successful in 1m26s
29 lines
1.4 KiB
XML
29 lines
1.4 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.33" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DeepDrftModels\DeepDrftModels.csproj" />
|
|
<ProjectReference Include="..\DeepDrftContent\DeepDrftContent.csproj" />
|
|
<ProjectReference Include="..\DeepDrftData\DeepDrftData.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|