2022-05-27 16:02:29 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-05-23 13:32:44 +08:00
|
|
|
<PackageReference Include="MMDeployCSharp" Version="1.1.0" />
|
2022-05-27 16:02:29 +08:00
|
|
|
<PackageReference Include="OpenCvSharp4" Version="4.5.5.20211231" />
|
|
|
|
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.5.5.20211231" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|