mirror of
https://git.tonybark.com/tonytins/bark.api.git
synced 2026-02-10 16:24:47 -05:00
Set up a new ASP.NET Core Web API project targeting .NET 10.0. Added basic Todo model, in-memory database context, and CRUD endpoints for Todo items based on tutorial. Included configuration files, launch settings, and .gitignore for Visual Studio and JetBrains IDEs.
15 lines
506 B
XML
15 lines
506 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.Diagnostics.EntityFrameworkCore" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.0" />
|
|
<PackageReference Include="NSwag.AspNetCore" Version="14.6.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|