feat(backend): scaffold ASP.NET Core Web API + xunit test project

This commit is contained in:
meelstorm
2026-07-17 17:35:40 +00:00
committed by EugeneTes
parent caf0376323
commit b17a845ff7
7 changed files with 126 additions and 0 deletions

15
Backend/Backend.csproj Normal file
View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.29" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.19.*" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
</ItemGroup>
</Project>