23 lines
823 B
XML
23 lines
823 B
XML
|
|
<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.18"/>
|
||
|
|
<PackageReference Include="OpenCvSharp4" Version="4.11.0.20250507" />
|
||
|
|
<PackageReference Include="OpenCvSharp4_runtime.debian.12-x64" Version="4.10.0" />
|
||
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2"/>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Reference Include="JetBrains.Annotations">
|
||
|
|
<HintPath>..\..\..\.nuget\packages\jetbrains.annotations\2023.3.0\lib\netstandard2.0\JetBrains.Annotations.dll</HintPath>
|
||
|
|
</Reference>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|