-
Notifications
You must be signed in to change notification settings - Fork 0
/
subtitle-ocr-console.csproj
31 lines (27 loc) · 1.32 KB
/
subtitle-ocr-console.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
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<ImplicitUsings>enable</ImplicitUsings>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<RootNamespace>subtitle_ocr_console</RootNamespace>
<!-- <RuntimeIdentifier>win10-x64</RuntimeIdentifier> -->
<SelfContained>true</SelfContained>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.11.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.0.0" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta14" />
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-beta16" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
<PackageReference Include="Tesseract" Version="4.1.1" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="trained-models\**\*.*" />
</ItemGroup>
</Project>