diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-08 09:23:36 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-08 09:23:36 +0300 |
commit | cd9c2734f08f45d19e92f39c5c2c0b1344652b58 (patch) | |
tree | c18778b0f2f700241bcd46f8176092409ee23431 /VisionClient/VisionClient.csproj | |
parent | c3da89678e5417548815f74fa69edb12be49cbe6 (diff) |
Add Yandex Vision OCR client
Diffstat (limited to 'VisionClient/VisionClient.csproj')
-rw-r--r-- | VisionClient/VisionClient.csproj | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/VisionClient/VisionClient.csproj b/VisionClient/VisionClient.csproj new file mode 100644 index 0000000..4f78021 --- /dev/null +++ b/VisionClient/VisionClient.csproj @@ -0,0 +1,14 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFrameworks>net472;net6.0-windows</TargetFrameworks> + <LangVersion>10</LangVersion> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="System.Net.Http" Version="4.3.4" /> + </ItemGroup> + +</Project> |