windowcapture
исходный код / Ocr/WC.Ocr.csproj

WC.Ocr.csproj

20 строк · 921 байт · модуль Ocr
 1<Project Sdk="Microsoft.NET.Sdk">
 2
 3  <!-- Tiny .NET 8 helper that exposes the built-in Windows OCR engine (Windows.Media.Ocr) to the
 4       .NET Framework 4.0 main app. The app runs "WC.Ocr.exe <image> [lang]" and reads recognized
 5       text from stdout. Local, free, offline; RU + EN language packs are already installed. -->
 6  <PropertyGroup>
 7    <OutputType>Exe</OutputType>
 8    <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
 9    <Nullable>disable</Nullable>
10    <ImplicitUsings>disable</ImplicitUsings>
11    <LangVersion>latest</LangVersion>
12    <AssemblyName>WC.Ocr</AssemblyName>
13    <Platforms>x64</Platforms>
14    <RuntimeIdentifier>win-x64</RuntimeIdentifier>
15    <SelfContained>false</SelfContained>
16    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
17    <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
18  </PropertyGroup>
19
20</Project>