mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:56:29 +00:00
9e7dc290db
Replace the WPF desktop application (Azaion.Suite, Azaion.Annotator, Azaion.Common, Azaion.Inference, Azaion.Loader, Azaion.LoaderUI, Azaion.Dataset, Azaion.Test) with a standalone .NET Web API in src/. Made-with: Cursor
16 lines
704 B
XML
16 lines
704 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="linq2db" Version="6.2.0" />
|
|
<PackageReference Include="MessagePack" Version="3.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" />
|
|
<PackageReference Include="Npgsql" Version="10.0.2" />
|
|
<PackageReference Include="RabbitMQ.Stream.Client" Version="1.8.9" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.5" />
|
|
<PackageReference Include="System.IO.Hashing" Version="10.0.5" />
|
|
</ItemGroup>
|
|
</Project>
|