scaffold default dotnet api app

This commit is contained in:
2026-02-27 19:13:17 -06:00
parent 2492e2154d
commit 5d35e5d552
9 changed files with 174 additions and 0 deletions

14
api/agologum-api.csproj Normal file
View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>agologum_api</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" />
</ItemGroup>
</Project>