41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BaseOutputPath>..\</BaseOutputPath>
|
|
<AppendTargetFrameworkToOutputPath>output</AppendTargetFrameworkToOutputPath>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Enums\" />
|
|
<Folder Include="Helper\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AntdUI" Version="1.8.9" />
|
|
<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" />
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DH.Commons\DH.Commons.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="halcondotnet">
|
|
<HintPath>..\x64\Debug\halcondotnet.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="hdevenginedotnet">
|
|
<HintPath>..\x64\Debug\hdevenginedotnet.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|