2024-06-17 11:02:28 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-07-05 16:04:47 +08:00
|
|
|
|
<!--<BaseOutputPath>.\bin\X64\Debug</BaseOutputPath>-->
|
2024-06-17 11:02:28 +08:00
|
|
|
|
<OutputType>Library</OutputType>
|
2024-07-05 16:04:47 +08:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>output</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<Optimize>False</Optimize>
|
2024-06-17 11:02:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="OpenCvSharp4" Version="4.5.3.20210817" />
|
|
|
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.5.3.20210817" />
|
|
|
|
|
<PackageReference Include="SunnyUI" Version="3.2.3.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|