Initialize solution structure and add WebAPI project

This commit is contained in:
Aaron Po
2025-11-12 18:36:51 -05:00
parent 4e2c9836c9
commit a200164609
17 changed files with 181 additions and 15 deletions

13
WebAPI/WebAPI.csproj Normal file
View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.11" />
</ItemGroup>
</Project>