Skip to content

Commit 8f1d3dd

Browse files
committed
copy tesseract files from IsIdentifiable
1 parent fc01ca3 commit 8f1d3dd

File tree

5 files changed

+11
-1
lines changed

5 files changed

+11
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
[Dd]ebugPublic/
2121
[Rr]elease/
2222
[Rr]eleases/
23-
x64/
2423
x86/
2524
bld/
2625
[Oo]bj/

.pre-commit-config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ repos:
55
hooks:
66
# General
77
- id: check-added-large-files
8+
exclude: |
9+
(?x)^(
10+
src/SmiServices/runtimes/x64/.*|
11+
)$
812
- id: check-case-conflict
913
- id: check-executables-have-shebangs
1014
- id: check-json

src/SmiServices/SmiServices.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,11 @@
2727
<PackageReference Include="System.IO.Abstractions" />
2828
<PackageReference Include="YamlDotNet" />
2929
</ItemGroup>
30+
<ItemGroup>
31+
<NativeLibs Include="$(MSBuildThisFileDirectory)runtimes\**\*.so" />
32+
<None Include="@(NativeLibs)">
33+
<Link>runtimes\%(RecursiveDir)%(FileName)%(Extension)</Link>
34+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35+
</None>
36+
</ItemGroup>
3037
</Project>
Binary file not shown.
18.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)