- New projects GerbilManager.AppHost / GerbilManager.ServiceDefaults (templates) - Added both to GerbilManager.slnx - WebAPI references ServiceDefaults; AddServiceDefaults + MapDefaultEndpoints wired Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
25 lines
960 B
XML
25 lines
960 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.OpenApi" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.2" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GerbilManager.ServiceDefaults\GerbilManager.ServiceDefaults.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|