-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataHarvest.csproj
28 lines (24 loc) · 1.01 KB
/
DataHarvest.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="PdfLibCore" Version="2.5.0" />
<PackageReference Include="QRCoder" Version="1.4.3" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="Tesseract" Version="5.2.0" />
<PackageReference Include="Tesseract-OCR" Version="1.0.4" />
<PackageReference Include="Tesseract.Drawing" Version="5.2.0" />
</ItemGroup>
<ItemGroup>
<None Update="tessdata\spa.traineddata">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>