31 lines
897 B
XML
31 lines
897 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>AnyCPU;X64</Platforms>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Helper\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenCvSharp4" Version="4.10.0.20241108" />
|
|
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.10.0.20241108" />
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.10.0.20241108" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="halcondotnet">
|
|
<HintPath>..\x64\Debug\halcondotnet.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="hdevenginedotnet">
|
|
<HintPath>..\x64\Debug\hdevenginedotnet.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|