27 lines
904 B
XML
27 lines
904 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<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>
|
|
<PackageReference Include="OpenCvSharp4" Version="4.10.0.20241108" />
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.10.0.20241108" />
|
|
<PackageReference Include="System.Drawing.Common" Version="9.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="DVPCameraCS64">
|
|
<HintPath>..\..\pudemo\DHControlVision\libs\DVPCameraCS_Net6.0\x64\DVPCameraCS64.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|